* Return `true` if the settings/options are valid, `false` otherwise. * * @param {object} options * @returns {boolean}
(options)
| 4334 | * @returns {boolean} |
| 4335 | */ |
| 4336 | static areSettingsValid(options) { |
| 4337 | let isValid = true; |
| 4338 | try { |
| 4339 | this.validate(options, true); |
| 4340 | } catch (error) { |
| 4341 | isValid = false; |
| 4342 | } |
| 4343 | |
| 4344 | return isValid; |
| 4345 | } |
| 4346 | |
| 4347 | /** |
| 4348 | * Return the default autoNumeric settings. |
no test coverage detected