MCPcopy Create free account
hub / github.com/Lemoncode/fonk / eq

Function eq

src/helpers/set.js:836–838  ·  view source on GitHub ↗

* 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 compare. * @param {*} other The othe

(value, other)

Source from the content-addressed store, hash-verified

834 * // => true
835 */
836function eq(value, other) {
837 return value === other || (value !== value && other !== other);
838}
839
840/**
841 * Checks if `value` is classified as an `Array` object.

Callers 2

assignValueFunction · 0.70
assocIndexOfFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected