2023-12-03 18:52:09 +03: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; };