ohctechv3/.svn/pristine/e8/e81391e24a8033a19284aa6906799c7f4092b7b8.svn-base
2024-10-28 15:03:36 +05:30

6 lines
192 B
Plaintext

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