* Generate an Array with the form values, outputting localized strings for each AutoNumeric-managed element values. * * @param {HTMLFormElement} form * @param {string} [serializedSpaceCharacter='+'] * @param {string|null} [forcedOutputFormat] If set, then this is the format that
(form, serializedSpaceCharacter = '+', forcedOutputFormat = null)
| 9583 | * @returns {Array} |
| 9584 | */ |
| 9585 | static _serializeLocalizedArray(form, serializedSpaceCharacter = '+', forcedOutputFormat = null) { |
| 9586 | return this._serialize(form, true, 'localized', serializedSpaceCharacter, forcedOutputFormat); |
| 9587 | } |
| 9588 | } |
| 9589 | |
| 9590 | /** |
no test coverage detected