Afanasev_Stepan_PIbd-21_IP/ИП 3 лаба/node_modules/es-abstract/helpers/isFinite.js
[USERNAME] 0dd26716dc Lab2-5
2024-01-10 16:11:49 +04:00

6 lines
192 B
JavaScript

'use strict';
var $isNaN = require('./isNaN');
module.exports = function (x) { return (typeof x === 'number' || typeof x === 'bigint') && !$isNaN(x) && x !== Infinity && x !== -Infinity; };