MCPcopy
hub / github.com/stemkoski/stemkoski.github.com / isEqual

Function isEqual

MathBox/mathbox-bundle.js:37475–37477  ·  view source on GitHub ↗

* Performs a deep comparison between two values to determine if they are * equivalent to each other. If a callback is provided it will be executed * to compare values. If the callback returns `undefined` comparisons will * be handled by the method instead. The callback is bound to `th

(a, b, callback, thisArg)

Source from the content-addressed store, hash-verified

37473 * // => true
37474 */
37475 function isEqual(a, b, callback, thisArg) {
37476 return baseIsEqual(a, b, typeof callback == 'function' && baseCreateCallback(callback, thisArg, 2));
37477 }
37478
37479 /**
37480 * Checks if `value` is, or can be coerced to, a finite number.

Callers

nothing calls this directly

Calls 2

baseIsEqualFunction · 0.85
baseCreateCallbackFunction · 0.85

Tested by

no test coverage detected