| 127 | }; |
| 128 | |
| 129 | export class CustomBounce { |
| 130 | |
| 131 | constructor(id, vars) { |
| 132 | this.ease = _create(id, vars); |
| 133 | } |
| 134 | |
| 135 | static create(id, vars) { |
| 136 | return _create(id, vars); |
| 137 | } |
| 138 | |
| 139 | static register(core) { |
| 140 | gsap = core; |
| 141 | _initCore(); |
| 142 | } |
| 143 | |
| 144 | } |
| 145 | |
| 146 | _getGSAP() && gsap.registerPlugin(CustomBounce); |
| 147 |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…