* Test if the given DOM element, or the element selected by the given selector string is already managed by AutoNumeric (if it has been initialized on the current page). * * @param {HTMLElement|string} domElementOrSelector Accepts either directly a DOM element to test, or a string selector
(domElementOrSelector)
| 3572 | * @returns {boolean} |
| 3573 | */ |
| 3574 | static test(domElementOrSelector) { |
| 3575 | return this._isInGlobalList(AutoNumericHelper.domElement(domElementOrSelector)); |
| 3576 | } |
| 3577 | |
| 3578 | /** |
| 3579 | * Create a WeakMap with the given name. |
no test coverage detected