Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F105181541
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
Sat, Mar 15, 06:07
Size
477 B
Mime Type
text/x-Algol68
Expires
Mon, Mar 17, 06:07 (2 d)
Engine
blob
Format
Raw Data
Handle
24939492
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