UNPKG

@ctrl/video-filename-parser

Version:
9 lines (8 loc) 291 B
const completeDvdExp = /\b(NTSC|PAL)?.DVDR\b/i; export function isCompleteDvd(title) { return completeDvdExp.test(title) || undefined; } const completeExp = /\b(COMPLETE)\b/i; export function isComplete(title) { return completeExp.test(title) || isCompleteDvd(title) || undefined; }