UNPKG

youtube-likes-downloader

Version:
8 lines (6 loc) 281 B
import { config } from '../config'; export function parseVideos(videosData: string): string[] { const regex = new RegExp(`${config.urlPrefix.regexEscape()}([A-Za-z0-9_-]+)`, 'g'); const matches = [ ...videosData.matchAll(regex) ]; return matches.map((match) => match[1]!); }