1
0
mirror of https://github.com/thangisme/notes.git synced 2024-06-27 12:55:27 +00:00
notes/node_modules/text-table/example/table.js

7 lines
140 B
JavaScript
Raw Normal View History

2017-03-09 18:16:08 +00:00
var table = require('../');
var t = table([
[ 'master', '0123456789abcdef' ],
[ 'staging', 'fedcba9876543210' ]
]);
console.log(t);