ubdate
This commit is contained in:
9
node_modules/es-abstract/2018/SameValueZero.js
generated
vendored
Normal file
9
node_modules/es-abstract/2018/SameValueZero.js
generated
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
'use strict';
|
||||
|
||||
var $isNaN = require('../helpers/isNaN');
|
||||
|
||||
// https://ecma-international.org/ecma-262/6.0/#sec-samevaluezero
|
||||
|
||||
module.exports = function SameValueZero(x, y) {
|
||||
return (x === y) || ($isNaN(x) && $isNaN(y));
|
||||
};
|
||||
Reference in New Issue
Block a user