* 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)
| 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. |
nothing calls this directly
no test coverage detected