* 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 the formatted string. * * @returns {Array}
()
| 3257 | * @returns {Array} |
| 3258 | */ |
| 3259 | formArrayFormatted() { |
| 3260 | return this.constructor._serializeFormattedArray(this.form(), this.settings.serializeSpaces); |
| 3261 | } |
| 3262 | |
| 3263 | /** |
| 3264 | * Return an array containing an object for each form <input> element. |
no test coverage detected