first commit

This commit is contained in:
becarta
2025-05-16 00:17:42 +02:00
parent ea5c866137
commit bacf566ec9
6020 changed files with 1715262 additions and 0 deletions

21
node_modules/lottie-web/player/js/main.js generated vendored Normal file
View File

@@ -0,0 +1,21 @@
const svgNS = 'http://www.w3.org/2000/svg';
let locationHref = '';
let _useWebWorker = false;
const initialDefaultFrame = -999999;
const setWebWorker = (flag) => { _useWebWorker = !!flag; };
const getWebWorker = () => _useWebWorker;
const setLocationHref = (value) => { locationHref = value; };
const getLocationHref = () => locationHref;
export {
svgNS,
initialDefaultFrame,
setWebWorker,
getWebWorker,
setLocationHref,
getLocationHref,
};