This repository has been archived on 2022-03-12. You can view files and clone it, but cannot push or open issues or pull requests.

13 lines
473 B
JavaScript
Raw Normal View History

2021-04-02 02:24:13 +03:00
import _typeof from "@babel/runtime/helpers/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);
}