UNPKG
@belvo-finance/belvo-vue-components
Version:
latest (1.12.19)
1.12.19
## Project setup ``` npm install ```
@belvo-finance/belvo-vue-components
/
node_modules
/
lottie-web
/
player
/
js
/
elements
/
helpers
/
shapes
/
SVGTransformData.js
9 lines
•
271 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
function SVGTransformData(mProps, op, container) {
this
.transform = { mProps: mProps, op: op, container: container };
this
.elements = [];
this
._isAnimated =
this
.transform.mProps.dynamicProperties.length ||
this
.transform.op.effectsSequence.length; }