Ignore:
Timestamp:
01/21/25 03:08:24 (3 days ago)
Author:
stefan toskovski <stefantoska84@…>
Branches:
main
Parents:
0c6b92a
Message:

F4 Finalna Verzija

File:
1 edited

Legend:

Unmodified
Added
Removed
  • imaps-frontend/node_modules/es-abstract/2023/SameValueNonNumber.js

    r0c6b92a r79a0317  
    99
    1010module.exports = function SameValueNonNumber(x, y) {
    11         var xType = Type(x);
    12         if (xType === 'Number') {
     11        if (typeof x === 'number') {
    1312                throw new $TypeError('Assertion failed: SameValueNonNumber does not accept Number values');
    1413        }
    15         if (xType !== Type(y)) {
     14        if (Type(x) !== Type(y)) {
    1615                throw new $TypeError('SameValueNonNumber requires two non-Number values of the same type.');
    1716        }
Note: See TracChangeset for help on using the changeset viewer.