(element, config = {})
| 42 | } |
| 43 | |
| 44 | static getOrCreateInstance(element, config = {}) { |
| 45 | return ( |
| 46 | this.getInstance(element) || |
| 47 | new this(element, typeof config === "object" ? config : null) |
| 48 | ); |
| 49 | } |
| 50 | |
| 51 | static get VERSION() { |
| 52 | return VERSION; |
nothing calls this directly
no test coverage detected