@instockng/storefront-ui 1.0.1 → 1.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index67.mjs CHANGED
@@ -1,31 +1,70 @@
1
- import u from "./index62.mjs";
2
- function f(e) {
3
- return u.matchAll(/\w+|\[(\w*)]/g, e).map((o) => o[0] === "[]" ? "" : o[1] || o[0]);
4
- }
5
- function y(e) {
6
- const o = {}, r = Object.keys(e);
7
- let i;
8
- const n = r.length;
9
- let c;
10
- for (i = 0; i < n; i++)
11
- c = r[i], o[c] = e[c];
12
- return o;
13
- }
14
- function m(e) {
15
- function o(r, i, n, c) {
16
- let s = r[c++];
17
- if (s === "__proto__") return !0;
18
- const t = Number.isFinite(+s), l = c >= r.length;
19
- return s = !s && u.isArray(n) ? n.length : s, l ? (u.hasOwnProp(n, s) ? n[s] = [n[s], i] : n[s] = i, !t) : ((!n[s] || !u.isObject(n[s])) && (n[s] = []), o(r, i, n[s], c) && u.isArray(n[s]) && (n[s] = y(n[s])), !t);
1
+ import i from "./index64.mjs";
2
+ import h from "./index78.mjs";
3
+ const c = (s) => s instanceof h ? { ...s } : s;
4
+ function C(s, f) {
5
+ f = f || {};
6
+ const u = {};
7
+ function d(t, e, r, o) {
8
+ return i.isPlainObject(t) && i.isPlainObject(e) ? i.merge.call({ caseless: o }, t, e) : i.isPlainObject(e) ? i.merge({}, e) : i.isArray(e) ? e.slice() : e;
9
+ }
10
+ function l(t, e, r, o) {
11
+ if (i.isUndefined(e)) {
12
+ if (!i.isUndefined(t))
13
+ return d(void 0, t, r, o);
14
+ } else return d(t, e, r, o);
15
+ }
16
+ function a(t, e) {
17
+ if (!i.isUndefined(e))
18
+ return d(void 0, e);
19
+ }
20
+ function n(t, e) {
21
+ if (i.isUndefined(e)) {
22
+ if (!i.isUndefined(t))
23
+ return d(void 0, t);
24
+ } else return d(void 0, e);
20
25
  }
21
- if (u.isFormData(e) && u.isFunction(e.entries)) {
22
- const r = {};
23
- return u.forEachEntry(e, (i, n) => {
24
- o(f(i), n, r, 0);
25
- }), r;
26
+ function m(t, e, r) {
27
+ if (r in f)
28
+ return d(t, e);
29
+ if (r in s)
30
+ return d(void 0, t);
26
31
  }
27
- return null;
32
+ const g = {
33
+ url: a,
34
+ method: a,
35
+ data: a,
36
+ baseURL: n,
37
+ transformRequest: n,
38
+ transformResponse: n,
39
+ paramsSerializer: n,
40
+ timeout: n,
41
+ timeoutMessage: n,
42
+ withCredentials: n,
43
+ withXSRFToken: n,
44
+ adapter: n,
45
+ responseType: n,
46
+ xsrfCookieName: n,
47
+ xsrfHeaderName: n,
48
+ onUploadProgress: n,
49
+ onDownloadProgress: n,
50
+ decompress: n,
51
+ maxContentLength: n,
52
+ maxBodyLength: n,
53
+ beforeRedirect: n,
54
+ transport: n,
55
+ httpAgent: n,
56
+ httpsAgent: n,
57
+ cancelToken: n,
58
+ socketPath: n,
59
+ responseEncoding: n,
60
+ validateStatus: m,
61
+ headers: (t, e, r) => l(c(t), c(e), r, !0)
62
+ };
63
+ return i.forEach(Object.keys({ ...s, ...f }), function(e) {
64
+ const r = g[e] || l, o = r(s[e], f[e], e);
65
+ i.isUndefined(o) && r !== m || (u[e] = o);
66
+ }), u;
28
67
  }
29
68
  export {
30
- m as default
69
+ C as default
31
70
  };
package/dist/index68.mjs CHANGED
@@ -1,10 +1,88 @@
1
- import r from "./index73.mjs";
2
- import i from "./index62.mjs";
3
- function l(o, t, e) {
4
- r.call(this, o ?? "canceled", r.ERR_CANCELED, t, e), this.name = "CanceledError";
1
+ import t from "./index64.mjs";
2
+ import c from "./index75.mjs";
3
+ import u from "./index86.mjs";
4
+ import S from "./index74.mjs";
5
+ import h from "./index87.mjs";
6
+ import a from "./index88.mjs";
7
+ import O from "./index69.mjs";
8
+ function y(i, r, e) {
9
+ if (t.isString(i))
10
+ try {
11
+ return (r || JSON.parse)(i), t.trim(i);
12
+ } catch (n) {
13
+ if (n.name !== "SyntaxError")
14
+ throw n;
15
+ }
16
+ return (e || JSON.stringify)(i);
5
17
  }
6
- i.inherits(l, r, {
7
- __CANCEL__: !0
18
+ const l = {
19
+ transitional: u,
20
+ adapter: ["xhr", "http", "fetch"],
21
+ transformRequest: [function(r, e) {
22
+ const n = e.getContentType() || "", s = n.indexOf("application/json") > -1, f = t.isObject(r);
23
+ if (f && t.isHTMLForm(r) && (r = new FormData(r)), t.isFormData(r))
24
+ return s ? JSON.stringify(O(r)) : r;
25
+ if (t.isArrayBuffer(r) || t.isBuffer(r) || t.isStream(r) || t.isFile(r) || t.isBlob(r) || t.isReadableStream(r))
26
+ return r;
27
+ if (t.isArrayBufferView(r))
28
+ return r.buffer;
29
+ if (t.isURLSearchParams(r))
30
+ return e.setContentType("application/x-www-form-urlencoded;charset=utf-8", !1), r.toString();
31
+ let o;
32
+ if (f) {
33
+ if (n.indexOf("application/x-www-form-urlencoded") > -1)
34
+ return h(r, this.formSerializer).toString();
35
+ if ((o = t.isFileList(r)) || n.indexOf("multipart/form-data") > -1) {
36
+ const p = this.env && this.env.FormData;
37
+ return S(
38
+ o ? { "files[]": r } : r,
39
+ p && new p(),
40
+ this.formSerializer
41
+ );
42
+ }
43
+ }
44
+ return f || s ? (e.setContentType("application/json", !1), y(r)) : r;
45
+ }],
46
+ transformResponse: [function(r) {
47
+ const e = this.transitional || l.transitional, n = e && e.forcedJSONParsing, s = this.responseType === "json";
48
+ if (t.isResponse(r) || t.isReadableStream(r))
49
+ return r;
50
+ if (r && t.isString(r) && (n && !this.responseType || s)) {
51
+ const m = !(e && e.silentJSONParsing) && s;
52
+ try {
53
+ return JSON.parse(r, this.parseReviver);
54
+ } catch (o) {
55
+ if (m)
56
+ throw o.name === "SyntaxError" ? c.from(o, c.ERR_BAD_RESPONSE, this, null, this.response) : o;
57
+ }
58
+ }
59
+ return r;
60
+ }],
61
+ /**
62
+ * A timeout in milliseconds to abort a request. If set to 0 (default) a
63
+ * timeout is not created.
64
+ */
65
+ timeout: 0,
66
+ xsrfCookieName: "XSRF-TOKEN",
67
+ xsrfHeaderName: "X-XSRF-TOKEN",
68
+ maxContentLength: -1,
69
+ maxBodyLength: -1,
70
+ env: {
71
+ FormData: a.classes.FormData,
72
+ Blob: a.classes.Blob
73
+ },
74
+ validateStatus: function(r) {
75
+ return r >= 200 && r < 300;
76
+ },
77
+ headers: {
78
+ common: {
79
+ Accept: "application/json, text/plain, */*",
80
+ "Content-Type": void 0
81
+ }
82
+ }
83
+ };
84
+ t.forEach(["delete", "get", "head", "post", "put", "patch"], (i) => {
85
+ l.headers[i] = {};
8
86
  });
9
87
  export {
10
88
  l as default
package/dist/index69.mjs CHANGED
@@ -1,77 +1,31 @@
1
- import u from "./index68.mjs";
2
- class c {
3
- constructor(e) {
4
- if (typeof e != "function")
5
- throw new TypeError("executor must be a function.");
6
- let t;
7
- this.promise = new Promise(function(r) {
8
- t = r;
9
- });
10
- const s = this;
11
- this.promise.then((n) => {
12
- if (!s._listeners) return;
13
- let r = s._listeners.length;
14
- for (; r-- > 0; )
15
- s._listeners[r](n);
16
- s._listeners = null;
17
- }), this.promise.then = (n) => {
18
- let r;
19
- const o = new Promise((i) => {
20
- s.subscribe(i), r = i;
21
- }).then(n);
22
- return o.cancel = function() {
23
- s.unsubscribe(r);
24
- }, o;
25
- }, e(function(r, o, i) {
26
- s.reason || (s.reason = new u(r, o, i), t(s.reason));
27
- });
28
- }
29
- /**
30
- * Throws a `CanceledError` if cancellation has been requested.
31
- */
32
- throwIfRequested() {
33
- if (this.reason)
34
- throw this.reason;
35
- }
36
- /**
37
- * Subscribe to the cancel signal
38
- */
39
- subscribe(e) {
40
- if (this.reason) {
41
- e(this.reason);
42
- return;
43
- }
44
- this._listeners ? this._listeners.push(e) : this._listeners = [e];
45
- }
46
- /**
47
- * Unsubscribe from the cancel signal
48
- */
49
- unsubscribe(e) {
50
- if (!this._listeners)
51
- return;
52
- const t = this._listeners.indexOf(e);
53
- t !== -1 && this._listeners.splice(t, 1);
54
- }
55
- toAbortSignal() {
56
- const e = new AbortController(), t = (s) => {
57
- e.abort(s);
58
- };
59
- return this.subscribe(t), e.signal.unsubscribe = () => this.unsubscribe(t), e.signal;
1
+ import u from "./index64.mjs";
2
+ function f(e) {
3
+ return u.matchAll(/\w+|\[(\w*)]/g, e).map((o) => o[0] === "[]" ? "" : o[1] || o[0]);
4
+ }
5
+ function y(e) {
6
+ const o = {}, r = Object.keys(e);
7
+ let i;
8
+ const n = r.length;
9
+ let c;
10
+ for (i = 0; i < n; i++)
11
+ c = r[i], o[c] = e[c];
12
+ return o;
13
+ }
14
+ function m(e) {
15
+ function o(r, i, n, c) {
16
+ let s = r[c++];
17
+ if (s === "__proto__") return !0;
18
+ const t = Number.isFinite(+s), l = c >= r.length;
19
+ return s = !s && u.isArray(n) ? n.length : s, l ? (u.hasOwnProp(n, s) ? n[s] = [n[s], i] : n[s] = i, !t) : ((!n[s] || !u.isObject(n[s])) && (n[s] = []), o(r, i, n[s], c) && u.isArray(n[s]) && (n[s] = y(n[s])), !t);
60
20
  }
61
- /**
62
- * Returns an object that contains a new `CancelToken` and a function that, when called,
63
- * cancels the `CancelToken`.
64
- */
65
- static source() {
66
- let e;
67
- return {
68
- token: new c(function(n) {
69
- e = n;
70
- }),
71
- cancel: e
72
- };
21
+ if (u.isFormData(e) && u.isFunction(e.entries)) {
22
+ const r = {};
23
+ return u.forEachEntry(e, (i, n) => {
24
+ o(f(i), n, r, 0);
25
+ }), r;
73
26
  }
27
+ return null;
74
28
  }
75
29
  export {
76
- c as default
30
+ m as default
77
31
  };
package/dist/index70.mjs CHANGED
@@ -1,6 +1,11 @@
1
- function t(n) {
2
- return !!(n && n.__CANCEL__);
1
+ import r from "./index75.mjs";
2
+ import i from "./index64.mjs";
3
+ function l(o, t, e) {
4
+ r.call(this, o ?? "canceled", r.ERR_CANCELED, t, e), this.name = "CanceledError";
3
5
  }
6
+ i.inherits(l, r, {
7
+ __CANCEL__: !0
8
+ });
4
9
  export {
5
- t as default
10
+ l as default
6
11
  };
package/dist/index71.mjs CHANGED
@@ -1,4 +1,77 @@
1
- const o = "1.12.2";
1
+ import u from "./index70.mjs";
2
+ class c {
3
+ constructor(e) {
4
+ if (typeof e != "function")
5
+ throw new TypeError("executor must be a function.");
6
+ let t;
7
+ this.promise = new Promise(function(r) {
8
+ t = r;
9
+ });
10
+ const s = this;
11
+ this.promise.then((n) => {
12
+ if (!s._listeners) return;
13
+ let r = s._listeners.length;
14
+ for (; r-- > 0; )
15
+ s._listeners[r](n);
16
+ s._listeners = null;
17
+ }), this.promise.then = (n) => {
18
+ let r;
19
+ const o = new Promise((i) => {
20
+ s.subscribe(i), r = i;
21
+ }).then(n);
22
+ return o.cancel = function() {
23
+ s.unsubscribe(r);
24
+ }, o;
25
+ }, e(function(r, o, i) {
26
+ s.reason || (s.reason = new u(r, o, i), t(s.reason));
27
+ });
28
+ }
29
+ /**
30
+ * Throws a `CanceledError` if cancellation has been requested.
31
+ */
32
+ throwIfRequested() {
33
+ if (this.reason)
34
+ throw this.reason;
35
+ }
36
+ /**
37
+ * Subscribe to the cancel signal
38
+ */
39
+ subscribe(e) {
40
+ if (this.reason) {
41
+ e(this.reason);
42
+ return;
43
+ }
44
+ this._listeners ? this._listeners.push(e) : this._listeners = [e];
45
+ }
46
+ /**
47
+ * Unsubscribe from the cancel signal
48
+ */
49
+ unsubscribe(e) {
50
+ if (!this._listeners)
51
+ return;
52
+ const t = this._listeners.indexOf(e);
53
+ t !== -1 && this._listeners.splice(t, 1);
54
+ }
55
+ toAbortSignal() {
56
+ const e = new AbortController(), t = (s) => {
57
+ e.abort(s);
58
+ };
59
+ return this.subscribe(t), e.signal.unsubscribe = () => this.unsubscribe(t), e.signal;
60
+ }
61
+ /**
62
+ * Returns an object that contains a new `CancelToken` and a function that, when called,
63
+ * cancels the `CancelToken`.
64
+ */
65
+ static source() {
66
+ let e;
67
+ return {
68
+ token: new c(function(n) {
69
+ e = n;
70
+ }),
71
+ cancel: e
72
+ };
73
+ }
74
+ }
2
75
  export {
3
- o as VERSION
76
+ c as default
4
77
  };
package/dist/index72.mjs CHANGED
@@ -1,85 +1,6 @@
1
- import t from "./index62.mjs";
2
- import E from "./index73.mjs";
3
- function B(i) {
4
- return t.isPlainObject(i) || t.isArray(i);
5
- }
6
- function h(i) {
7
- return t.endsWith(i, "[]") ? i.slice(0, -2) : i;
8
- }
9
- function O(i, e, s) {
10
- return i ? i.concat(e).map(function(o, d) {
11
- return o = h(o), !s && d ? "[" + o + "]" : o;
12
- }).join(s ? "." : "") : e;
13
- }
14
- function T(i) {
15
- return t.isArray(i) && !i.some(B);
16
- }
17
- const S = t.toFlatObject(t, {}, null, function(e) {
18
- return /^is[A-Z]/.test(e);
19
- });
20
- function W(i, e, s) {
21
- if (!t.isObject(i))
22
- throw new TypeError("target must be an object");
23
- e = e || new FormData(), s = t.toFlatObject(s, {
24
- metaTokens: !0,
25
- dots: !1,
26
- indexes: !1
27
- }, !1, function(n, u) {
28
- return !t.isUndefined(u[n]);
29
- });
30
- const p = s.metaTokens, o = s.visitor || j, d = s.dots, m = s.indexes, w = (s.Blob || typeof Blob < "u" && Blob) && t.isSpecCompliantForm(e);
31
- if (!t.isFunction(o))
32
- throw new TypeError("visitor must be a function");
33
- function l(r) {
34
- if (r === null) return "";
35
- if (t.isDate(r))
36
- return r.toISOString();
37
- if (t.isBoolean(r))
38
- return r.toString();
39
- if (!w && t.isBlob(r))
40
- throw new E("Blob is not supported. Use a Buffer instead.");
41
- return t.isArrayBuffer(r) || t.isTypedArray(r) ? w && typeof Blob == "function" ? new Blob([r]) : Buffer.from(r) : r;
42
- }
43
- function j(r, n, u) {
44
- let f = r;
45
- if (r && !u && typeof r == "object") {
46
- if (t.endsWith(n, "{}"))
47
- n = p ? n : n.slice(0, -2), r = JSON.stringify(r);
48
- else if (t.isArray(r) && T(r) || (t.isFileList(r) || t.endsWith(n, "[]")) && (f = t.toArray(r)))
49
- return n = h(n), f.forEach(function(b, x) {
50
- !(t.isUndefined(b) || b === null) && e.append(
51
- // eslint-disable-next-line no-nested-ternary
52
- m === !0 ? O([n], x, d) : m === null ? n : n + "[]",
53
- l(b)
54
- );
55
- }), !1;
56
- }
57
- return B(r) ? !0 : (e.append(O(u, n, d), l(r)), !1);
58
- }
59
- const a = [], F = Object.assign(S, {
60
- defaultVisitor: j,
61
- convertValue: l,
62
- isVisitable: B
63
- });
64
- function A(r, n) {
65
- if (!t.isUndefined(r)) {
66
- if (a.indexOf(r) !== -1)
67
- throw Error("Circular reference detected in " + n.join("."));
68
- a.push(r), t.forEach(r, function(f, c) {
69
- (!(t.isUndefined(f) || f === null) && o.call(
70
- e,
71
- f,
72
- t.isString(c) ? c.trim() : c,
73
- n,
74
- F
75
- )) === !0 && A(f, n ? n.concat(c) : [c]);
76
- }), a.pop();
77
- }
78
- }
79
- if (!t.isObject(i))
80
- throw new TypeError("data must be an object");
81
- return A(i), e;
1
+ function t(n) {
2
+ return !!(n && n.__CANCEL__);
82
3
  }
83
4
  export {
84
- W as default
5
+ t as default
85
6
  };
package/dist/index73.mjs CHANGED
@@ -1,56 +1,4 @@
1
- import c from "./index62.mjs";
2
- function r(t, i, o, a, e) {
3
- Error.call(this), Error.captureStackTrace ? Error.captureStackTrace(this, this.constructor) : this.stack = new Error().stack, this.message = t, this.name = "AxiosError", i && (this.code = i), o && (this.config = o), a && (this.request = a), e && (this.response = e, this.status = e.status ? e.status : null);
4
- }
5
- c.inherits(r, Error, {
6
- toJSON: function() {
7
- return {
8
- // Standard
9
- message: this.message,
10
- name: this.name,
11
- // Microsoft
12
- description: this.description,
13
- number: this.number,
14
- // Mozilla
15
- fileName: this.fileName,
16
- lineNumber: this.lineNumber,
17
- columnNumber: this.columnNumber,
18
- stack: this.stack,
19
- // Axios
20
- config: c.toJSONObject(this.config),
21
- code: this.code,
22
- status: this.status
23
- };
24
- }
25
- });
26
- const u = r.prototype, R = {};
27
- [
28
- "ERR_BAD_OPTION_VALUE",
29
- "ERR_BAD_OPTION",
30
- "ECONNABORTED",
31
- "ETIMEDOUT",
32
- "ERR_NETWORK",
33
- "ERR_FR_TOO_MANY_REDIRECTS",
34
- "ERR_DEPRECATED",
35
- "ERR_BAD_RESPONSE",
36
- "ERR_BAD_REQUEST",
37
- "ERR_CANCELED",
38
- "ERR_NOT_SUPPORT",
39
- "ERR_INVALID_URL"
40
- // eslint-disable-next-line func-names
41
- ].forEach((t) => {
42
- R[t] = { value: t };
43
- });
44
- Object.defineProperties(r, R);
45
- Object.defineProperty(u, "isAxiosError", { value: !0 });
46
- r.from = (t, i, o, a, e, E) => {
47
- const s = Object.create(u);
48
- c.toFlatObject(t, s, function(m) {
49
- return m !== Error.prototype;
50
- }, (n) => n !== "isAxiosError");
51
- const l = t && t.message ? t.message : "Error", h = i == null && t ? t.code : i;
52
- return r.call(s, l, h, o, a, e), t && s.cause == null && Object.defineProperty(s, "cause", { value: t, configurable: !0 }), s.name = t && t.name || "Error", E && Object.assign(s, E), s;
53
- };
1
+ const o = "1.12.2";
54
2
  export {
55
- r as default
3
+ o as VERSION
56
4
  };
package/dist/index74.mjs CHANGED
@@ -1,8 +1,85 @@
1
- function u(n) {
2
- return function(r) {
3
- return n.apply(null, r);
4
- };
1
+ import t from "./index64.mjs";
2
+ import E from "./index75.mjs";
3
+ function B(i) {
4
+ return t.isPlainObject(i) || t.isArray(i);
5
+ }
6
+ function h(i) {
7
+ return t.endsWith(i, "[]") ? i.slice(0, -2) : i;
8
+ }
9
+ function O(i, e, s) {
10
+ return i ? i.concat(e).map(function(o, d) {
11
+ return o = h(o), !s && d ? "[" + o + "]" : o;
12
+ }).join(s ? "." : "") : e;
13
+ }
14
+ function T(i) {
15
+ return t.isArray(i) && !i.some(B);
16
+ }
17
+ const S = t.toFlatObject(t, {}, null, function(e) {
18
+ return /^is[A-Z]/.test(e);
19
+ });
20
+ function W(i, e, s) {
21
+ if (!t.isObject(i))
22
+ throw new TypeError("target must be an object");
23
+ e = e || new FormData(), s = t.toFlatObject(s, {
24
+ metaTokens: !0,
25
+ dots: !1,
26
+ indexes: !1
27
+ }, !1, function(n, u) {
28
+ return !t.isUndefined(u[n]);
29
+ });
30
+ const p = s.metaTokens, o = s.visitor || j, d = s.dots, m = s.indexes, w = (s.Blob || typeof Blob < "u" && Blob) && t.isSpecCompliantForm(e);
31
+ if (!t.isFunction(o))
32
+ throw new TypeError("visitor must be a function");
33
+ function l(r) {
34
+ if (r === null) return "";
35
+ if (t.isDate(r))
36
+ return r.toISOString();
37
+ if (t.isBoolean(r))
38
+ return r.toString();
39
+ if (!w && t.isBlob(r))
40
+ throw new E("Blob is not supported. Use a Buffer instead.");
41
+ return t.isArrayBuffer(r) || t.isTypedArray(r) ? w && typeof Blob == "function" ? new Blob([r]) : Buffer.from(r) : r;
42
+ }
43
+ function j(r, n, u) {
44
+ let f = r;
45
+ if (r && !u && typeof r == "object") {
46
+ if (t.endsWith(n, "{}"))
47
+ n = p ? n : n.slice(0, -2), r = JSON.stringify(r);
48
+ else if (t.isArray(r) && T(r) || (t.isFileList(r) || t.endsWith(n, "[]")) && (f = t.toArray(r)))
49
+ return n = h(n), f.forEach(function(b, x) {
50
+ !(t.isUndefined(b) || b === null) && e.append(
51
+ // eslint-disable-next-line no-nested-ternary
52
+ m === !0 ? O([n], x, d) : m === null ? n : n + "[]",
53
+ l(b)
54
+ );
55
+ }), !1;
56
+ }
57
+ return B(r) ? !0 : (e.append(O(u, n, d), l(r)), !1);
58
+ }
59
+ const a = [], F = Object.assign(S, {
60
+ defaultVisitor: j,
61
+ convertValue: l,
62
+ isVisitable: B
63
+ });
64
+ function A(r, n) {
65
+ if (!t.isUndefined(r)) {
66
+ if (a.indexOf(r) !== -1)
67
+ throw Error("Circular reference detected in " + n.join("."));
68
+ a.push(r), t.forEach(r, function(f, c) {
69
+ (!(t.isUndefined(f) || f === null) && o.call(
70
+ e,
71
+ f,
72
+ t.isString(c) ? c.trim() : c,
73
+ n,
74
+ F
75
+ )) === !0 && A(f, n ? n.concat(c) : [c]);
76
+ }), a.pop();
77
+ }
78
+ }
79
+ if (!t.isObject(i))
80
+ throw new TypeError("data must be an object");
81
+ return A(i), e;
5
82
  }
6
83
  export {
7
- u as default
84
+ W as default
8
85
  };