source: imaps-frontend/node_modules/es-abstract/2024/Number/sameValueZero.js

main
Last change on this file was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago

Update repo after prototype presentation

  • Property mode set to 100644
File size: 497 bytes
Line 
1'use strict';
2
3var $TypeError = require('es-errors/type');
4
5var isNaN = require('../../helpers/isNaN');
6
7// https://262.ecma-international.org/11.0/#sec-numeric-types-number-sameValueZero
8
9module.exports = function NumberSameValueZero(x, y) {
10 if (typeof x !== 'number' || typeof y !== 'number') {
11 throw new $TypeError('Assertion failed: `x` and `y` arguments must be Numbers');
12 }
13
14 var xNaN = isNaN(x);
15 var yNaN = isNaN(y);
16 if (xNaN || yNaN) {
17 return xNaN === yNaN;
18 }
19 return x === y;
20};
Note: See TracBrowser for help on using the repository browser.