UNPKG

514 BJavaScriptView Raw
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3exports.setupInitialFrame = exports.INITIAL_FRAME_LOCAL_STORAGE_KEY = void 0;
4exports.INITIAL_FRAME_LOCAL_STORAGE_KEY = 'remotion.initialFrame';
5const getInitialFrame = () => {
6 const param = localStorage.getItem(exports.INITIAL_FRAME_LOCAL_STORAGE_KEY);
7 return param ? Number(param) : 0;
8};
9const setupInitialFrame = () => {
10 window.remotion_initialFrame = getInitialFrame();
11};
12exports.setupInitialFrame = setupInitialFrame;