youtube-likes-downloader
Version:
Download all liked videos from youtube
10 lines • 422 B
JavaScript
;
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