UNPKG

@vot.js/core

Version:
14 lines (13 loc) 319 B
import { VideoService } from "../types/service.js"; export function convertVOT(service, videoId, url) { if (service === VideoService.patreon) { return { service: "mux", videoId: new URL(url).pathname.slice(1), }; } return { service, videoId, }; }