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/2024/IsStrictlyEqual.js

    r0c6b92a r79a0317  
    88
    99module.exports = function IsStrictlyEqual(x, y) {
    10         var xType = Type(x);
    11         var yType = Type(y);
    12         if (xType !== yType) {
     10        if (Type(x) !== Type(y)) {
    1311                return false;
    1412        }
    15         return xType === 'Number' ? NumberEqual(x, y) : SameValueNonNumber(x, y);
     13        return typeof x === 'number' ? NumberEqual(x, y) : SameValueNonNumber(x, y);
    1614};
Note: See TracChangeset for help on using the changeset viewer.