Update parser.js

This commit is contained in:
Aleksandr Statciuk
2021-06-05 17:12:43 +03:00
parent f9a0351bc1
commit 061123abfd

View File

@@ -4,6 +4,7 @@ const categories = require('./categories')
const path = require('path')
const sfwCategories = categories.filter(c => !c.nsfw).map(c => c.name)
const nsfwCategories = categories.filter(c => c.nsfw).map(c => c.name)
const parser = {}
@@ -234,6 +235,10 @@ class Channel {
isSFW() {
return sfwCategories.includes(this.category)
}
isNSFW() {
return nsfwCategories.includes(this.category)
}
}
module.exports = parser