Files
Tiber365/node_modules/lottie-web/player/js/utils/DataManagerWorkerOverrides.js
2025-05-16 00:17:42 +02:00

14 lines
411 B
JavaScript

import dataManager from './DataManager';
dataManager.completeData = function (animationData) {
if (animationData.__complete) {
return;
}
this.checkColors(animationData);
this.checkChars(animationData);
this.checkPathProperties(animationData);
this.checkShapes(animationData);
this.completeLayers(animationData.layers, animationData.assets);
animationData.__complete = true;
};