1
0
mirror of https://github.com/snobu/destreamer.git synced 2026-02-09 16:29:42 +00:00

changed function name to be more significant

This commit is contained in:
Luca
2020-04-10 12:59:09 +02:00
parent 51e86ae593
commit b3fd6544cc
3 changed files with 8 additions and 7 deletions

View File

@@ -27,7 +27,7 @@ function sanitizeUrls(urls: string[]) {
return sanitized;
}
export function getVideoUrls(videoUrls: any) {
export function parseVideoUrls(videoUrls: any) {
const t = videoUrls[0] as string;
const isPath = t.substring(t.length-4) === '.txt';
let urls: string[];
@@ -56,4 +56,4 @@ export function checkRequirements() {
));
process.exit(22);
}
}
}