tdesign-mobile-vue
Version:
tdesign-mobile-vue
1 lines • 1.19 kB
Source Map (JSON)
{"version":3,"file":"dep-4931819d.mjs","sources":["../../node_modules/lodash/eq.js"],"sourcesContent":["/**\n * Performs a\n * [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero)\n * comparison between two values to determine if they are equivalent.\n *\n * @static\n * @memberOf _\n * @since 4.0.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 * _.eq(object, object);\n * // => true\n *\n * _.eq(object, other);\n * // => false\n *\n * _.eq('a', 'a');\n * // => true\n *\n * _.eq('a', Object('a'));\n * // => false\n *\n * _.eq(NaN, NaN);\n * // => true\n */\nfunction eq(value, other) {\n return value === other || (value !== value && other !== other);\n}\n\nmodule.exports = eq;\n"],"names":["eq","value","other","eq_1"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAgCA,SAASA,EAAEA,CAACC,KAAK,EAAEC,KAAK,EAAE;EACxB,OAAOD,KAAK,KAAKC,KAAK,IAAKD,KAAK,KAAKA,KAAK,IAAIC,KAAK,KAAKA,KAAM,CAAA;AAChE,CAAA;AAEAC,IAAAA,IAAc,GAAGH;;;;"}