1
0
Fork 0
mirror of https://github.com/veggiemonk/awesome-docker.git synced 2025-04-28 23:29:13 +02:00
awesome-docker/website/index.js
2018-06-25 13:50:07 +02:00

19 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();