mirror of
https://github.com/cloudflare/wrangler-action.git
synced 2025-03-11 03:04:45 +01: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; };
|