source: imaps-frontend/node_modules/es-abstract/2021/Number/add.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: 797 bytes
RevLine 
[d565449]1'use strict';
2
3var $TypeError = require('es-errors/type');
4
5var isFinite = require('../../helpers/isFinite');
6var isNaN = require('../../helpers/isNaN');
7
8// https://262.ecma-international.org/12.0/#sec-numeric-types-number-add
9
10module.exports = function NumberAdd(x, y) {
11 if (typeof x !== 'number' || typeof y !== 'number') {
12 throw new $TypeError('Assertion failed: `x` and `y` arguments must be Numbers');
13 }
14
15 if (isNaN(x) || isNaN(y) || (x === Infinity && y === -Infinity) || (x === -Infinity && y === Infinity)) {
16 return NaN;
17 }
18
19 if (!isFinite(x)) {
20 return x;
21 }
22 if (!isFinite(y)) {
23 return y;
24 }
25
26 if (x === y && x === 0) { // both zeroes
27 return Infinity / x === -Infinity && Infinity / y === -Infinity ? -0 : +0;
28 }
29
30 // shortcut for the actual spec mechanics
31 return x + y;
32};
Note: See TracBrowser for help on using the repository browser.