mirror of
https://github.com/jackyzha0/quartz.git
synced 2025-12-24 05:14:06 -06:00
10 lines
223 B
JavaScript
10 lines
223 B
JavaScript
'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));
|
|
};
|