- Updated all component headers and documentation
- Changed navbar and footer branding
- Updated homepage hero badge
- Modified page title in index.html
- Simplified footer text to 'Built with ❤️'
- Consistent V2 capitalization across all references
9 lines
181 B
JavaScript
9 lines
181 B
JavaScript
var table = require('../');
|
|
var t = table([
|
|
[ 'beep', '1024' ],
|
|
[ 'boop', '33450' ],
|
|
[ 'foo', '1006' ],
|
|
[ 'bar', '45' ]
|
|
], { align: [ 'l', 'r' ] });
|
|
console.log(t);
|