main
Last change
on this file since d565449 was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago |
Update repo after prototype presentation
|
-
Property mode
set to
100644
|
File size:
556 bytes
|
Rev | Line | |
---|
[d565449] | 1 | 'use strict';
|
---|
| 2 |
|
---|
| 3 | var isNegativeZero = require('is-negative-zero');
|
---|
| 4 |
|
---|
| 5 | var $TypeError = require('es-errors/type');
|
---|
| 6 |
|
---|
| 7 | var NumberSameValueZero = require('./sameValueZero');
|
---|
| 8 |
|
---|
| 9 | // https://262.ecma-international.org/11.0/#sec-numeric-types-number-sameValue
|
---|
| 10 |
|
---|
| 11 | module.exports = function NumberSameValue(x, y) {
|
---|
| 12 | if (typeof x !== 'number' || typeof y !== 'number') {
|
---|
| 13 | throw new $TypeError('Assertion failed: `x` and `y` arguments must be Numbers');
|
---|
| 14 | }
|
---|
| 15 | if (x === 0 && y === 0) {
|
---|
| 16 | return !(isNegativeZero(x) ^ isNegativeZero(y));
|
---|
| 17 | }
|
---|
| 18 | return NumberSameValueZero(x, y);
|
---|
| 19 | };
|
---|
Note:
See
TracBrowser
for help on using the repository browser.