* Unformat and return the raw numeric string corresponding to the given value, or directly set the unformatted value into the given DOM element if one is passed as an argument. * By default, this use the current element settings. * The user can override any option of its choosing by passin
(stringOrElement, optionOverride = null)
| 2897 | * @returns {string|null} |
| 2898 | */ |
| 2899 | unformatOther(stringOrElement, optionOverride = null) { //FIXME test this |
| 2900 | return this._formatOrUnformatOther(false, stringOrElement, optionOverride); |
| 2901 | } |
| 2902 | |
| 2903 | /** |
| 2904 | * Method that either format or unformat the value of another element. |
no test coverage detected