* Return `true` if the input type is supported by AutoNumeric * * @returns {boolean} * @throws
()
| 7911 | * @throws |
| 7912 | */ |
| 7913 | _isInputTypeSupported() { |
| 7914 | return (this.domElement.type === 'text' || |
| 7915 | this.domElement.type === 'hidden' || |
| 7916 | this.domElement.type === 'tel' || |
| 7917 | AutoNumericHelper.isUndefinedOrNullOrEmpty(this.domElement.type)); |
| 7918 | } |
| 7919 | |
| 7920 | /** |
| 7921 | * Check if the DOM element is supported by autoNumeric. |
no test coverage detected