* Check if the given value has a corresponding key in the `valuesToStrings` option object. * * @param {number|string} value * @returns {boolean} Returns `true` if such a key is found. * @private
(value)
| 2374 | * @private |
| 2375 | */ |
| 2376 | _checkValuesToStrings(value) { |
| 2377 | return this.constructor._checkValuesToStringsArray(value, this.valuesToStringsKeys); |
| 2378 | } |
| 2379 | |
| 2380 | /** |
| 2381 | * Check if the given value has a corresponding key in the `stringsArray` array. |
no test coverage detected