added README.md clean up commands

This commit is contained in:
johnfacey
2021-03-18 19:28:26 -05:00
parent eb818a0f39
commit c6c7661980
10 changed files with 67 additions and 22 deletions

View File

@@ -5,9 +5,9 @@ let feeds = require('./feeds.json');
let linkFlayerMap = [];
exports.addSource = function(source){
exports.addSource = function(title,source){
var linkData = {
title: `${source}`,
title: `${title}`,
link: `${source}`
}
feeds.push(linkData);