Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F99434643
toPrimitive.js
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Fri, Jan 24, 13:11
Size
477 B
Mime Type
text/x-Algol68
Expires
Sun, Jan 26, 13:11 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
23800114
Attached To
rOACCT Open Access Compliance Check Tool (OACCT)
toPrimitive.js
View Options
import
_typeof
from
"@babel/runtime/helpers/esm/typeof"
;
export
default
function
_toPrimitive
(
input
,
hint
)
{
if
(
_typeof
(
input
)
!==
"object"
||
input
===
null
)
return
input
;
var
prim
=
input
[
Symbol
.
toPrimitive
];
if
(
prim
!==
undefined
)
{
var
res
=
prim
.
call
(
input
,
hint
||
"default"
);
if
(
_typeof
(
res
)
!==
"object"
)
return
res
;
throw
new
TypeError
(
"@@toPrimitive must return a primitive value."
);
}
return
(
hint
===
"string"
?
String
:
Number
)(
input
);
}
Event Timeline
Log In to Comment