source: imaps-frontend/node_modules/es-abstract/2022/SameValueNonNumeric.js@ d565449

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: 573 bytes
Line 
1'use strict';
2
3var $TypeError = require('es-errors/type');
4
5var SameValue = require('./SameValue');
6var Type = require('./Type');
7
8// https://262.ecma-international.org/11.0/#sec-samevaluenonnumeric
9
10module.exports = function SameValueNonNumeric(x, y) {
11 if (typeof x === 'number' || typeof x === 'bigint') {
12 throw new $TypeError('Assertion failed: SameValueNonNumeric does not accept Number or BigInt values');
13 }
14 if (Type(x) !== Type(y)) {
15 throw new $TypeError('SameValueNonNumeric requires two non-numeric values of the same type.');
16 }
17 return SameValue(x, y);
18};
Note: See TracBrowser for help on using the repository browser.