* Serialize the form values to a string, outputting numeric strings for each AutoNumeric-managed element values. * * @param {HTMLFormElement} form * @param {string} [serializedSpaceCharacter='+'] * @returns {string}
(form, serializedSpaceCharacter = '+')
| 9526 | * @returns {string} |
| 9527 | */ |
| 9528 | static _serializeNumericString(form, serializedSpaceCharacter = '+') { |
| 9529 | return this._serialize(form, false, 'unformatted', serializedSpaceCharacter); |
| 9530 | } |
| 9531 | |
| 9532 | /** |
| 9533 | * Serialize the form values to a string, outputting the formatted value as strings for each AutoNumeric-managed elements. |
no test coverage detected