* Return an array containing an object for each form element. * Those objects are of the following structure `{ name: foo, value: '42' }`, where the `name` is the DOM element name, and the `value` is an unformatted numeric string. * * @returns {Array}
()
| 3247 | * @returns {Array} |
| 3248 | */ |
| 3249 | formArrayNumericString() { |
| 3250 | return this.constructor._serializeNumericStringArray(this.form(), this.settings.serializeSpaces); |
| 3251 | } |
| 3252 | |
| 3253 | /** |
| 3254 | * Return an array containing an object for each form <input> element. |
no test coverage detected