* Checks if `value` is suitable for strict equality comparisons, i.e. `===`. * * @private * @param {*} value The value to check. * @returns {boolean} Returns `true` if `value` if suitable for strict * equality comparisons, else `false`.
(value)
| 5704 | * equality comparisons, else `false`. |
| 5705 | */ |
| 5706 | function isStrictComparable(value) { |
| 5707 | return value === value && (value === 0 ? ((1 / value) > 0) : !isObject(value)); |
| 5708 | } |
| 5709 | |
| 5710 | /** |
| 5711 | * Merges the function metadata of `source` into `data`. |
no test coverage detected