* Performs a * [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero) * comparison between two values to determine if they are equivalent. * * @static * @memberOf _ * @since 4.0.0 * @category Lang * @param {*} value The value to compa
(value, other)
| 11281 | * // => true |
| 11282 | */ |
| 11283 | function eq(value, other) { |
| 11284 | return value === other || (value !== value && other !== other); |
| 11285 | } |
| 11286 | |
| 11287 | /** |
| 11288 | * Checks if `value` is greater than `other`. |
no outgoing calls
no test coverage detected