Table is production ready

This commit is contained in:
Julien Bisconti
2018-06-09 22:59:45 +02:00
parent c7b93e9431
commit c852e15b99
8 changed files with 247 additions and 245 deletions

View File

@@ -1,7 +1,19 @@
const list = require('list.js');
const List = require('list.js');
const main = () => {
console.log('hi!');
const userList = new List('md', {
valueNames: [
'name',
'description',
'homepage',
'star',
'updated',
'language',
'license',
'author',
],
});
console.log(`There are ${userList.size()} projects`);
};
main();