* Select the formatted element content, based on the `selectNumberOnly` option * * @returns {AutoNumeric}
()
| 2657 | * @returns {AutoNumeric} |
| 2658 | */ |
| 2659 | select() { |
| 2660 | if (this.settings.selectNumberOnly) { |
| 2661 | this.selectNumber(); |
| 2662 | } else { |
| 2663 | this._defaultSelectAll(); |
| 2664 | } |
| 2665 | |
| 2666 | return this; |
| 2667 | } |
| 2668 | |
| 2669 | /** |
| 2670 | * Select the whole element content (including the currency symbol). |
no test coverage detected