(element, config = {})
| 602 | } |
| 603 | |
| 604 | static getOrCreateInstance(element, config = {}) { |
| 605 | return ( |
| 606 | this.getInstance(element) || |
| 607 | new this(element, typeof config === "object" ? config : null) |
| 608 | ); |
| 609 | } |
| 610 | } |
| 611 | |
| 612 | export default Input; |
no test coverage detected