(domElement, options = null)
| 4650 | } |
| 4651 | |
| 4652 | static localizeAndSet(domElement, options = null) { //FIXME test this |
| 4653 | const localizedValue = this.localize(domElement, options); |
| 4654 | AutoNumericHelper.setElementValue(domElement, localizedValue); |
| 4655 | |
| 4656 | return localizedValue; |
| 4657 | } |
| 4658 | |
| 4659 | /** |
| 4660 | * Return `true` if the given DOM element has an AutoNumeric object that manages it. |
nothing calls this directly
no test coverage detected