InternetProgramming/Lab3/node_modules/text-table/example/table.js

7 lines
140 B
JavaScript
Raw Normal View History

2023-12-15 14:42:22 +04:00
var table = require('../');
var t = table([
[ 'master', '0123456789abcdef' ],
[ 'staging', 'fedcba9876543210' ]
]);
console.log(t);