kv-music/js/content-filter.ts
2026-04-14 23:02:32 +03:00

12 lines
386 B
TypeScript

const _cr = [
'emVl', // zee
'em1j', // zmc
'emluZyBtdXNpYw==', // zing music
'ZXRjIGJvbGx5d29vZA==', // etc bollywood
'Ym9sbHl3b29kIG11c2lj', // bollywood music
'ZXNzZWw=', // essel
'emluZGFnaQ==', // zindagi
].map(atob);
export const isBlockedCopyright = (c: string | null | undefined): boolean =>
!!c && _cr.some((s) => c.toLowerCase().includes(s));