mirror of
https://github.com/actions/setup-go.git
synced 2025-07-18 12:55:16 -06:00
Fix.
This commit is contained in:
parent
ffce9ce43f
commit
a966e84ff9
6749 changed files with 937822 additions and 460 deletions
3
node_modules/es-abstract/helpers/isFinite.js
generated
vendored
Normal file
3
node_modules/es-abstract/helpers/isFinite.js
generated
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
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; };
|
Loading…
Add table
Add a link
Reference in a new issue