COLLECTED BY
Organization:
Internet Archive
Focused crawls are collections of frequently-updated webcrawl data from narrow (as opposed to broad or wide) web crawls, often focused on a single domain or subdomain.
The Wayback Machine - https://web.archive.org/web/20201220220727/https://github.com/lodash/lodash/blob/master/eqDeep.js
Permalink
Cannot retrieve contributors at this time
33 lines (31 sloc)
962 Bytes
import baseIsEqual from './.internal/baseIsEqual.js'
/**
* Performs a deep comparison between two values to determine if they are
* equivalent.
*
* **Note:** This method supports comparing arrays, array buffers, booleans,
* date objects, error objects, maps, numbers, `Object` objects, regexes,
* sets, strings, symbols, and typed arrays. `Object` objects are compared
* by their own, not inherited, enumerable properties. Functions and DOM
* nodes are compared by strict equality, i.e. `===`.
*
* @since 0.1.0
* @category Lang
* @param {* } value The value to compare.
* @param {* } other The other value to compare.
* @returns {boolean } Returns `true` if the values are equivalent, else `false`.
* @example
*
* const object = { 'a': 1 }
* const other = { 'a': 1 }
*
* isEqual(object, other)
* // => true
*
* object === other
* // => false
*/
function isEqual ( value , other ) {
return baseIsEqual ( value , other )
}
export default isEqual
You can’t perform that action at this time.
You signed in with another tab or window. Reload to refresh your session.
You signed out in another tab or window. Reload to refresh your session.