| 102 | }; |
| 103 | |
| 104 | export class CustomWiggle { |
| 105 | |
| 106 | constructor(id, vars) { |
| 107 | this.ease = _create(id, vars); |
| 108 | } |
| 109 | |
| 110 | static create(id, vars) { |
| 111 | return _create(id, vars); |
| 112 | } |
| 113 | |
| 114 | static register(core) { |
| 115 | gsap = core; |
| 116 | _initCore(); |
| 117 | } |
| 118 | |
| 119 | } |
| 120 | |
| 121 | _getGSAP() && gsap.registerPlugin(CustomWiggle); |
| 122 |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…