diff --git a/scripts/parser.js b/scripts/parser.js index 007d76dc1..2348c9145 100644 --- a/scripts/parser.js +++ b/scripts/parser.js @@ -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