mirror of
https://github.com/iptv-org/iptv
synced 2025-12-19 03:46:47 -05:00
4 lines
134 B
JavaScript
4 lines
134 B
JavaScript
|
|
module.exports = function ({ categories }) {
|
||
|
|
return Array.isArray(categories) ? categories.filter(c => c.nsfw).length > 0 : false
|
||
|
|
}
|