Urara-Blog/node_modules/.pnpm-store/v3/files/40/8b4185559ea35c2770a15a7dd311ece4dba8474333b566e5797c2d49e69689ae1445df830d275019549717195ede365c1094186989b60c0535844a7dc65b7d
2022-08-14 01:14:53 +08:00

5 lines
214 B
Text

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