JDRssDownloader/checkDownloadHistory.js
2023-01-24 12:04:14 +00:00

14 lines
424 B
JavaScript

const fs = require('fs')
function checkDownloadHistory(urlObj) {
history = JSON.parse(fs.readFileSync('./cache/downloadHistory.json'));
if (history.includes(urlObj.fileName)) {
return true
} else {
history.push(urlObj.fileName)
fs.writeFileSync('./cache/downloadHistory.json', JSON.stringify(history));
return false
}
}
module.exports = { checkDownloadHistory }