mirror of
https://github.com/cloudflare/wrangler-action.git
synced 2024-11-26 11:44:45 +01:00
5 lines
192 B
JavaScript
5 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; };
|