hexo/node_modules/es-abstract/helpers/isFinite.js

6 lines
197 B
JavaScript
Raw Normal View History

2023-10-03 11:14:36 +08:00
'use strict';
var $isNaN = require('./isNaN');
module.exports = function (x) { return (typeof x === 'number' || typeof x === 'bigint') && !$isNaN(x) && x !== Infinity && x !== -Infinity; };