mirror of
https://code.forgejo.org/actions/setup-python.git
synced 2026-03-19 21:45:56 +03: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; };
|