Viewing File: /home/ubuntu/misabloom-frontend-base/node_modules/es-abstract/2019/SameValueZero.js

'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));
};
Back to Directory File Manager