UNPKG

youtube-likes-downloader

Version:
10 lines 422 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.parseVideos = parseVideos; const config_1 = require("../config"); function parseVideos(videosData) { const regex = new RegExp(`${config_1.config.urlPrefix.regexEscape()}([A-Za-z0-9_-]+)`, 'g'); const matches = [...videosData.matchAll(regex)]; return matches.map((match) => match[1]); } //# sourceMappingURL=parseVideos.js.map