12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- // node_modules/@babel/runtime/helpers/esm/typeof.js
- function _typeof(obj) {
- "@babel/helpers - typeof";
- return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function(obj2) {
- return typeof obj2;
- } : function(obj2) {
- return obj2 && "function" == typeof Symbol && obj2.constructor === Symbol && obj2 !== Symbol.prototype ? "symbol" : typeof obj2;
- }, _typeof(obj);
- }
- // node_modules/@babel/runtime/helpers/esm/toPrimitive.js
- function _toPrimitive(input, hint) {
- if (_typeof(input) !== "object" || input === null)
- return input;
- var prim = input[Symbol.toPrimitive];
- if (prim !== void 0) {
- 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);
- }
- // node_modules/@babel/runtime/helpers/esm/toPropertyKey.js
- function _toPropertyKey(arg) {
- var key = _toPrimitive(arg, "string");
- return _typeof(key) === "symbol" ? key : String(key);
- }
- // node_modules/@babel/runtime/helpers/esm/defineProperty.js
- function _defineProperty(obj, key, value) {
- key = _toPropertyKey(key);
- if (key in obj) {
- Object.defineProperty(obj, key, {
- value,
- enumerable: true,
- configurable: true,
- writable: true
- });
- } else {
- obj[key] = value;
- }
- return obj;
- }
- export {
- _typeof,
- _toPropertyKey,
- _defineProperty
- };
- //# sourceMappingURL=chunk-WNF2IDJY.js.map
|