feat: add new file
This commit is contained in:
18
frontend/node_modules/@babel/helpers/lib/helpers/toPrimitive.js
generated
vendored
Normal file
18
frontend/node_modules/@babel/helpers/lib/helpers/toPrimitive.js
generated
vendored
Normal file
@@ -0,0 +1,18 @@
|
||||
"use strict";
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
exports.default = toPrimitive;
|
||||
function toPrimitive(input, hint) {
|
||||
if (typeof input !== "object" || !input) 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);
|
||||
}
|
||||
|
||||
//# sourceMappingURL=toPrimitive.js.map
|
||||
Reference in New Issue
Block a user