mirror of
https://gitea.com/actions/setup-python.git
synced 2024-11-22 18:19:35 +01:00
3 lines
199 B
JavaScript
3 lines
199 B
JavaScript
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; };
|