UNPKG

remotion

Version:

Make videos programmatically

11 lines (10 loc) 324 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.getAbsoluteSrc = void 0; const getAbsoluteSrc = (relativeSrc) => { if (typeof window === 'undefined') { return relativeSrc; } return new URL(relativeSrc, window.origin).href; }; exports.getAbsoluteSrc = getAbsoluteSrc;