Gitiles
Code Review
Sign In
korap.ids-mannheim.de
/
KorAP
/
Kalamar
/
58b9f11ca7b449f85f2f1fb5337ba7633e50b14b
/
.
/
node_modules
/
es-abstract
/
helpers
/
isFinite.js
blob: 9e7cd4f82f3d7a4b8f22397a54a4c6c38514ae8b [
file
] [
log
] [
blame
]
'use strict'
;
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
;
};