* Set the count of AutoNumeric form children to 1 for the given form element, or if none are passed, the current `this.parentForm` one. * * @param {HTMLFormElement|null} [formElement=null] * @private
(formElement = null)
| 1360 | * @private |
| 1361 | */ |
| 1362 | _initializeFormCounterToOne(formElement = null) { |
| 1363 | this._getFormElement(formElement).dataset.anCount = 1; |
| 1364 | } |
| 1365 | |
| 1366 | /** |
| 1367 | * Increment the AutoNumeric form children count for the given form element, or if none are passed, the current `this.parentForm` one. |
no test coverage detected