Welcome to mirror list, hosted at ThFree Co, Russian Federation.

SameValueZero.js « 2018 « es-abstract « node_modules - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0dedcd2c3b0740fb99c7aa3b1c9beca22e73097d (plain)
1
2
3
4
5
6
7
8
9
'use strict';

var $isNaN = require('../helpers/isNaN');

// https://www.ecma-international.org/ecma-262/6.0/#sec-samevaluezero

module.exports = function SameValueZero(x, y) {
	return (x === y) || ($isNaN(x) && $isNaN(y));
};