mirror of
https://github.com/CharaChorder/DeviceManager.git
synced 2026-01-19 08:22:53 +00:00
6 lines
192 B
JavaScript
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; };
|