first commit
This commit is contained in:
13
node_modules/lottie-web/player/js/utils/expressions/PropertyGroupFactory.js
generated
vendored
Normal file
13
node_modules/lottie-web/player/js/utils/expressions/PropertyGroupFactory.js
generated
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
const propertyGroupFactory = (function () {
|
||||
return function (interfaceFunction, parentPropertyGroup) {
|
||||
return function (val) {
|
||||
val = val === undefined ? 1 : val;
|
||||
if (val <= 0) {
|
||||
return interfaceFunction;
|
||||
}
|
||||
return parentPropertyGroup(val - 1);
|
||||
};
|
||||
};
|
||||
}());
|
||||
|
||||
export default propertyGroupFactory;
|
Reference in New Issue
Block a user