awesome-docker/website/index.js
2018-06-25 13:50:07 +02:00

20 lines
359 B
Markdown

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