awesome-docker/website/index.js
2018-06-09 23:14:37 +02:00

20 lines
325 B
Markdown

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