1
0
mirror of https://github.com/iptv-org/iptv.git synced 2025-06-19 01:55:13 +08:00
iptv/scripts/generators/index_m3u.js
2022-02-11 19:56:11 +03:00

8 lines
237 B
JavaScript

const api = require('../core/api')
const _ = require('lodash')
module.exports = async function (streams = []) {
streams = _.filter(streams, stream => stream.is_nsfw === false)
return { filepath: 'index.m3u', items: streams }
}