* Return `true` if the given pre-defined option name is an attribute of the `AutoNumeric.predefinedOptions` object * * @param {string} preDefinedOptionName * @returns {boolean} * @private
(preDefinedOptionName)
| 1132 | * @private |
| 1133 | */ |
| 1134 | static _isPreDefinedOptionValid(preDefinedOptionName) { |
| 1135 | return Object.prototype.hasOwnProperty.call(AutoNumeric.predefinedOptions, preDefinedOptionName); |
| 1136 | } |
| 1137 | |
| 1138 | /** |
| 1139 | * Return an option object based on the given parameter. |
no outgoing calls
no test coverage detected