<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">'use strict';

var $isNaN = require('./isNaN');

module.exports = function (x) { return (typeof x === 'number' || typeof x === 'bigint') &amp;&amp; !$isNaN(x) &amp;&amp; x !== Infinity &amp;&amp; x !== -Infinity; };
</pre></body></html>