Legend:
- Unmodified
- Added
- Removed
-
imaps-frontend/node_modules/es-abstract/helpers/isFinite.js
r0c6b92a r79a0317 1 1 'use strict'; 2 2 3 var $isNaN = require('./isNaN'); 4 5 module.exports = function (x) { return (typeof x === 'number' || typeof x === 'bigint') && !$isNaN(x) && x !== Infinity && x !== -Infinity; }; 3 // TODO, semver-major: delete 4 module.exports = require('math-intrinsics/isFinite');
Note:
See TracChangeset
for help on using the changeset viewer.