|
Last change
on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 12 days ago |
|
Fix frontend appearance
|
-
Property mode
set to
100644
|
|
File size:
564 bytes
|
| Rev | Line | |
|---|
| [9af201e] | 1 | 'use strict';
|
|---|
| 2 |
|
|---|
| 3 | var $TypeError = require('es-errors/type');
|
|---|
| 4 | var isFinite = require('math-intrinsics/isFinite');
|
|---|
| 5 | var isNaN = require('math-intrinsics/isNaN');
|
|---|
| 6 |
|
|---|
| 7 | // https://262.ecma-international.org/11.0/#sec-numeric-types-number-divide
|
|---|
| 8 |
|
|---|
| 9 | module.exports = function NumberDivide(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 | if (isNaN(x) || isNaN(y) || (!isFinite(x) && !isFinite(y))) {
|
|---|
| 14 | return NaN;
|
|---|
| 15 | }
|
|---|
| 16 | // shortcut for the actual spec mechanics
|
|---|
| 17 | return x / y;
|
|---|
| 18 | };
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.