Page Menu
Home
Software Heritage
Search
Configure Global Search
Log In
Files
F9343330
es.math.sinh.js
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
654 B
Subscribers
None
es.math.sinh.js
View Options
var
$
=
require
(
'../internals/export'
);
var
fails
=
require
(
'../internals/fails'
);
var
expm1
=
require
(
'../internals/math-expm1'
);
var
abs
=
Math
.
abs
;
var
exp
=
Math
.
exp
;
var
E
=
Math
.
E
;
var
FORCED
=
fails
(
function
()
{
// eslint-disable-next-line es/no-math-sinh -- required for testing
return
Math
.
sinh
(
-
2e-17
)
!=
-
2e-17
;
});
// `Math.sinh` method
// https://tc39.es/ecma262/#sec-math.sinh
// V8 near Chromium 38 has a problem with very small numbers
$
({
target
:
'Math'
,
stat
:
true
,
forced
:
FORCED
},
{
sinh
:
function
sinh
(
x
)
{
var
n
=
+
x
;
return
abs
(
n
)
<
1
?
(
expm1
(
n
)
-
expm1
(
-
n
))
/
2
:
(
exp
(
n
-
1
)
-
exp
(
-
n
-
1
))
*
(
E
/
2
);
}
});
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Fri, Jul 4, 1:26 PM (1 w, 12 h ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3362661
Attached To
rDWAPPS Web applications
Event Timeline
Log In to Comment