| 35 | } |
| 36 | }()), |
| 37 | _parseAnimation = animationOrId => (animationOrId instanceof Animation) ? animationOrId : animationOrId ? gsap.getById(animationOrId) : null, |
| 38 | _createElement = (type, container, cssText) => { |
| 39 | let element = _doc.createElementNS ? _doc.createElementNS(type === "svg" ? _svgNS : _domNS, type) : _doc.createElement(type); |
| 40 | if (container) { |
no test coverage detected
searching dependent graphs…