astro-ghostcms/.pnpm-store/v3/files/27/7cbe8ed102c9c35816f8705cb06...

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; };