Page Menu
Home
Software Heritage
Search
Configure Global Search
Log In
Files
F8394304
number-is-finite.js
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
336 B
Subscribers
None
number-is-finite.js
View Options
var
global
=
require
(
'../internals/global'
);
var
globalIsFinite
=
global
.
isFinite
;
// `Number.isFinite` method
// https://tc39.es/ecma262/#sec-number.isfinite
// eslint-disable-next-line es/no-number-isfinite -- safe
module
.
exports
=
Number
.
isFinite
||
function
isFinite
(
it
)
{
return
typeof
it
==
'number'
&&
globalIsFinite
(
it
);
};
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Wed, Jun 4, 7:23 PM (1 w, 2 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3399128
Attached To
rDWAPPS Web applications
Event Timeline
Log In to Comment