Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F121318333
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
Thu, Jul 10, 01:10
Size
477 B
Mime Type
text/x-Algol68
Expires
Sat, Jul 12, 01:10 (2 d)
Engine
blob
Format
Raw Data
Handle
27309926
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