mirror of
https://github.com/iptv-org/iptv.git
synced 2025-05-13 02:20:03 -04:00
3 lines
134 B
JavaScript
3 lines
134 B
JavaScript
module.exports = function ({ categories }) {
|
|
return Array.isArray(categories) ? categories.filter(c => c.nsfw).length > 0 : false
|
|
}
|