Update parser.js

This commit is contained in:
Aleksandr Statciuk 2021-06-05 17:12:43 +03:00
parent 40a2e8c1ea
commit e6a9cad632

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