Version 1
[yaffs-website] / node_modules / core-js / library / modules / _same-value.js
diff --git a/node_modules/core-js/library/modules/_same-value.js b/node_modules/core-js/library/modules/_same-value.js
new file mode 100644 (file)
index 0000000..8c2b8c7
--- /dev/null
@@ -0,0 +1,4 @@
+// 7.2.9 SameValue(x, y)
+module.exports = Object.is || function is(x, y){
+  return x === y ? x !== 0 || 1 / x === 1 / y : x != x && y != y;
+};
\ No newline at end of file