{"version":3,"file":"isEqual-07e7f8b9.js","sources":["../../../node_modules/lodash/isEqual.js"],"sourcesContent":["var baseIsEqual = require('./_baseIsEqual');\n\n/**\n * Performs a deep comparison between two values to determine if they are\n * equivalent.\n *\n * **Note:** This method supports comparing arrays, array buffers, booleans,\n * date objects, error objects, maps, numbers, `Object` objects, regexes,\n * sets, strings, symbols, and typed arrays. `Object` objects are compared\n * by their own, not inherited, enumerable properties. Functions and DOM\n * nodes are compared by strict equality, i.e. `===`.\n *\n * @static\n * @memberOf _\n * @since 0.1.0\n * @category Lang\n * @param {*} value The value to compare.\n * @param {*} other The other value to compare.\n * @returns {boolean} Returns `true` if the values are equivalent, else `false`.\n * @example\n *\n * var object = { 'a': 1 };\n * var other = { 'a': 1 };\n *\n * _.isEqual(object, other);\n * // => true\n *\n * object === other;\n * // => false\n */\nfunction isEqual(value, other) {\n return baseIsEqual(value, other);\n}\n\nmodule.exports = isEqual;\n"],"names":["baseIsEqual","require$$0","isEqual","value","other","isEqual_1"],"mappings":"6DAAA,IAAIA,EAAcC,EA8BlB,SAASC,EAAQC,EAAOC,EAAO,CAC7B,OAAOJ,EAAYG,EAAOC,CAAK,CACjC,CAEA,IAAAC,EAAiBH","x_google_ignoreList":[0]}