awesome-docker/website/index.js

20 lines
325 B
Markdown
Raw Normal View History

2018-06-09 22:59:45 +02:00
const List = require('list.js');
2018-06-09 16:08:57 +02:00
2018-03-17 16:27:41 +01:00
const main = () => {
2018-06-09 22:59:45 +02:00
const userList = new List('md', {
valueNames: [
'name',
'description',
'homepage',
'star',
'updated',
'language',
'license',
'author',
],
});
console.log(`There are ${userList.size()} projects`);
2018-03-17 16:27:41 +01:00
};
main();