@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/index75.mjs CHANGED
@@ -1,7 +1,56 @@
1
- import i from "./index62.mjs";
2
- function o(r) {
3
- return i.isObject(r) && r.isAxiosError === !0;
1
+ import c from "./index64.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
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
+ };
5
54
  export {
6
- o as default
55
+ r as default
7
56
  };
package/dist/index76.mjs CHANGED
@@ -1,181 +1,8 @@
1
- import i from "./index62.mjs";
2
- import S from "./index89.mjs";
3
- const h = Symbol("internals");
4
- function y(r) {
5
- return r && String(r).trim().toLowerCase();
6
- }
7
- function m(r) {
8
- return r === !1 || r == null ? r : i.isArray(r) ? r.map(m) : String(r);
9
- }
10
- function A(r) {
11
- const t = /* @__PURE__ */ Object.create(null), e = /([^\s,;=]+)\s*(?:=\s*([^,;]+))?/g;
12
- let s;
13
- for (; s = e.exec(r); )
14
- t[s[1]] = s[2];
15
- return t;
16
- }
17
- const k = (r) => /^[-_a-zA-Z0-9^`|~,!#$%&'*+.]+$/.test(r.trim());
18
- function g(r, t, e, s, n) {
19
- if (i.isFunction(s))
20
- return s.call(this, t, e);
21
- if (n && (t = e), !!i.isString(t)) {
22
- if (i.isString(s))
23
- return t.indexOf(s) !== -1;
24
- if (i.isRegExp(s))
25
- return s.test(t);
26
- }
27
- }
28
- function E(r) {
29
- return r.trim().toLowerCase().replace(/([a-z\d])(\w*)/g, (t, e, s) => e.toUpperCase() + s);
30
- }
31
- function j(r, t) {
32
- const e = i.toCamelCase(" " + t);
33
- ["get", "set", "has"].forEach((s) => {
34
- Object.defineProperty(r, s + e, {
35
- value: function(n, o, f) {
36
- return this[s].call(this, t, n, o, f);
37
- },
38
- configurable: !0
39
- });
40
- });
41
- }
42
- class b {
43
- constructor(t) {
44
- t && this.set(t);
45
- }
46
- set(t, e, s) {
47
- const n = this;
48
- function o(c, l, a) {
49
- const u = y(l);
50
- if (!u)
51
- throw new Error("header name must be a non-empty string");
52
- const p = i.findKey(n, u);
53
- (!p || n[p] === void 0 || a === !0 || a === void 0 && n[p] !== !1) && (n[p || l] = m(c));
54
- }
55
- const f = (c, l) => i.forEach(c, (a, u) => o(a, u, l));
56
- if (i.isPlainObject(t) || t instanceof this.constructor)
57
- f(t, e);
58
- else if (i.isString(t) && (t = t.trim()) && !k(t))
59
- f(S(t), e);
60
- else if (i.isObject(t) && i.isIterable(t)) {
61
- let c = {}, l, a;
62
- for (const u of t) {
63
- if (!i.isArray(u))
64
- throw TypeError("Object iterator must return a key-value pair");
65
- c[a = u[0]] = (l = c[a]) ? i.isArray(l) ? [...l, u[1]] : [l, u[1]] : u[1];
66
- }
67
- f(c, e);
68
- } else
69
- t != null && o(e, t, s);
70
- return this;
71
- }
72
- get(t, e) {
73
- if (t = y(t), t) {
74
- const s = i.findKey(this, t);
75
- if (s) {
76
- const n = this[s];
77
- if (!e)
78
- return n;
79
- if (e === !0)
80
- return A(n);
81
- if (i.isFunction(e))
82
- return e.call(this, n, s);
83
- if (i.isRegExp(e))
84
- return e.exec(n);
85
- throw new TypeError("parser must be boolean|regexp|function");
86
- }
87
- }
88
- }
89
- has(t, e) {
90
- if (t = y(t), t) {
91
- const s = i.findKey(this, t);
92
- return !!(s && this[s] !== void 0 && (!e || g(this, this[s], s, e)));
93
- }
94
- return !1;
95
- }
96
- delete(t, e) {
97
- const s = this;
98
- let n = !1;
99
- function o(f) {
100
- if (f = y(f), f) {
101
- const c = i.findKey(s, f);
102
- c && (!e || g(s, s[c], c, e)) && (delete s[c], n = !0);
103
- }
104
- }
105
- return i.isArray(t) ? t.forEach(o) : o(t), n;
106
- }
107
- clear(t) {
108
- const e = Object.keys(this);
109
- let s = e.length, n = !1;
110
- for (; s--; ) {
111
- const o = e[s];
112
- (!t || g(this, this[o], o, t, !0)) && (delete this[o], n = !0);
113
- }
114
- return n;
115
- }
116
- normalize(t) {
117
- const e = this, s = {};
118
- return i.forEach(this, (n, o) => {
119
- const f = i.findKey(s, o);
120
- if (f) {
121
- e[f] = m(n), delete e[o];
122
- return;
123
- }
124
- const c = t ? E(o) : String(o).trim();
125
- c !== o && delete e[o], e[c] = m(n), s[c] = !0;
126
- }), this;
127
- }
128
- concat(...t) {
129
- return this.constructor.concat(this, ...t);
130
- }
131
- toJSON(t) {
132
- const e = /* @__PURE__ */ Object.create(null);
133
- return i.forEach(this, (s, n) => {
134
- s != null && s !== !1 && (e[n] = t && i.isArray(s) ? s.join(", ") : s);
135
- }), e;
136
- }
137
- [Symbol.iterator]() {
138
- return Object.entries(this.toJSON())[Symbol.iterator]();
139
- }
140
- toString() {
141
- return Object.entries(this.toJSON()).map(([t, e]) => t + ": " + e).join(`
142
- `);
143
- }
144
- getSetCookie() {
145
- return this.get("set-cookie") || [];
146
- }
147
- get [Symbol.toStringTag]() {
148
- return "AxiosHeaders";
149
- }
150
- static from(t) {
151
- return t instanceof this ? t : new this(t);
152
- }
153
- static concat(t, ...e) {
154
- const s = new this(t);
155
- return e.forEach((n) => s.set(n)), s;
156
- }
157
- static accessor(t) {
158
- const s = (this[h] = this[h] = {
159
- accessors: {}
160
- }).accessors, n = this.prototype;
161
- function o(f) {
162
- const c = y(f);
163
- s[c] || (j(n, f), s[c] = !0);
164
- }
165
- return i.isArray(t) ? t.forEach(o) : o(t), this;
166
- }
167
- }
168
- b.accessor(["Content-Type", "Content-Length", "Accept", "Accept-Encoding", "User-Agent", "Authorization"]);
169
- i.reduceDescriptors(b.prototype, ({ value: r }, t) => {
170
- let e = t[0].toUpperCase() + t.slice(1);
171
- return {
172
- get: () => r,
173
- set(s) {
174
- this[e] = s;
175
- }
1
+ function u(n) {
2
+ return function(r) {
3
+ return n.apply(null, r);
176
4
  };
177
- });
178
- i.freezeMethods(b);
5
+ }
179
6
  export {
180
- b as default
7
+ u as default
181
8
  };
package/dist/index77.mjs CHANGED
@@ -1,55 +1,7 @@
1
- import s from "./index62.mjs";
2
- import m from "./index90.mjs";
3
- import u from "./index91.mjs";
4
- import { getFetch as b } from "./index92.mjs";
5
- import d from "./index73.mjs";
6
- const p = {
7
- http: m,
8
- xhr: u,
9
- fetch: {
10
- get: b
11
- }
12
- };
13
- s.forEach(p, (e, o) => {
14
- if (e) {
15
- try {
16
- Object.defineProperty(e, "name", { value: o });
17
- } catch {
18
- }
19
- Object.defineProperty(e, "adapterName", { value: o });
20
- }
21
- });
22
- const f = (e) => `- ${e}`, g = (e) => s.isFunction(e) || e === null || e === !1, y = {
23
- getAdapter: (e, o) => {
24
- e = s.isArray(e) ? e : [e];
25
- const { length: a } = e;
26
- let i, t;
27
- const c = {};
28
- for (let r = 0; r < a; r++) {
29
- i = e[r];
30
- let n;
31
- if (t = i, !g(i) && (t = p[(n = String(i)).toLowerCase()], t === void 0))
32
- throw new d(`Unknown adapter '${n}'`);
33
- if (t && (s.isFunction(t) || (t = t.get(o))))
34
- break;
35
- c[n || "#" + r] = t;
36
- }
37
- if (!t) {
38
- const r = Object.entries(c).map(
39
- ([l, h]) => `adapter ${l} ` + (h === !1 ? "is not supported by the environment" : "is not available in the build")
40
- );
41
- let n = a ? r.length > 1 ? `since :
42
- ` + r.map(f).join(`
43
- `) : " " + f(r[0]) : "as no adapter specified";
44
- throw new d(
45
- "There is no suitable adapter to dispatch the request " + n,
46
- "ERR_NOT_SUPPORT"
47
- );
48
- }
49
- return t;
50
- },
51
- adapters: p
52
- };
1
+ import i from "./index64.mjs";
2
+ function o(r) {
3
+ return i.isObject(r) && r.isAxiosError === !0;
4
+ }
53
5
  export {
54
- y as default
6
+ o as default
55
7
  };
package/dist/index78.mjs CHANGED
@@ -1,71 +1,181 @@
1
- const e = {
2
- Continue: 100,
3
- SwitchingProtocols: 101,
4
- Processing: 102,
5
- EarlyHints: 103,
6
- Ok: 200,
7
- Created: 201,
8
- Accepted: 202,
9
- NonAuthoritativeInformation: 203,
10
- NoContent: 204,
11
- ResetContent: 205,
12
- PartialContent: 206,
13
- MultiStatus: 207,
14
- AlreadyReported: 208,
15
- ImUsed: 226,
16
- MultipleChoices: 300,
17
- MovedPermanently: 301,
18
- Found: 302,
19
- SeeOther: 303,
20
- NotModified: 304,
21
- UseProxy: 305,
22
- Unused: 306,
23
- TemporaryRedirect: 307,
24
- PermanentRedirect: 308,
25
- BadRequest: 400,
26
- Unauthorized: 401,
27
- PaymentRequired: 402,
28
- Forbidden: 403,
29
- NotFound: 404,
30
- MethodNotAllowed: 405,
31
- NotAcceptable: 406,
32
- ProxyAuthenticationRequired: 407,
33
- RequestTimeout: 408,
34
- Conflict: 409,
35
- Gone: 410,
36
- LengthRequired: 411,
37
- PreconditionFailed: 412,
38
- PayloadTooLarge: 413,
39
- UriTooLong: 414,
40
- UnsupportedMediaType: 415,
41
- RangeNotSatisfiable: 416,
42
- ExpectationFailed: 417,
43
- ImATeapot: 418,
44
- MisdirectedRequest: 421,
45
- UnprocessableEntity: 422,
46
- Locked: 423,
47
- FailedDependency: 424,
48
- TooEarly: 425,
49
- UpgradeRequired: 426,
50
- PreconditionRequired: 428,
51
- TooManyRequests: 429,
52
- RequestHeaderFieldsTooLarge: 431,
53
- UnavailableForLegalReasons: 451,
54
- InternalServerError: 500,
55
- NotImplemented: 501,
56
- BadGateway: 502,
57
- ServiceUnavailable: 503,
58
- GatewayTimeout: 504,
59
- HttpVersionNotSupported: 505,
60
- VariantAlsoNegotiates: 506,
61
- InsufficientStorage: 507,
62
- LoopDetected: 508,
63
- NotExtended: 510,
64
- NetworkAuthenticationRequired: 511
65
- };
66
- Object.entries(e).forEach(([t, o]) => {
67
- e[o] = t;
1
+ import i from "./index64.mjs";
2
+ import S from "./index89.mjs";
3
+ const h = Symbol("internals");
4
+ function y(r) {
5
+ return r && String(r).trim().toLowerCase();
6
+ }
7
+ function m(r) {
8
+ return r === !1 || r == null ? r : i.isArray(r) ? r.map(m) : String(r);
9
+ }
10
+ function A(r) {
11
+ const t = /* @__PURE__ */ Object.create(null), e = /([^\s,;=]+)\s*(?:=\s*([^,;]+))?/g;
12
+ let s;
13
+ for (; s = e.exec(r); )
14
+ t[s[1]] = s[2];
15
+ return t;
16
+ }
17
+ const k = (r) => /^[-_a-zA-Z0-9^`|~,!#$%&'*+.]+$/.test(r.trim());
18
+ function g(r, t, e, s, n) {
19
+ if (i.isFunction(s))
20
+ return s.call(this, t, e);
21
+ if (n && (t = e), !!i.isString(t)) {
22
+ if (i.isString(s))
23
+ return t.indexOf(s) !== -1;
24
+ if (i.isRegExp(s))
25
+ return s.test(t);
26
+ }
27
+ }
28
+ function E(r) {
29
+ return r.trim().toLowerCase().replace(/([a-z\d])(\w*)/g, (t, e, s) => e.toUpperCase() + s);
30
+ }
31
+ function j(r, t) {
32
+ const e = i.toCamelCase(" " + t);
33
+ ["get", "set", "has"].forEach((s) => {
34
+ Object.defineProperty(r, s + e, {
35
+ value: function(n, o, f) {
36
+ return this[s].call(this, t, n, o, f);
37
+ },
38
+ configurable: !0
39
+ });
40
+ });
41
+ }
42
+ class b {
43
+ constructor(t) {
44
+ t && this.set(t);
45
+ }
46
+ set(t, e, s) {
47
+ const n = this;
48
+ function o(c, l, a) {
49
+ const u = y(l);
50
+ if (!u)
51
+ throw new Error("header name must be a non-empty string");
52
+ const p = i.findKey(n, u);
53
+ (!p || n[p] === void 0 || a === !0 || a === void 0 && n[p] !== !1) && (n[p || l] = m(c));
54
+ }
55
+ const f = (c, l) => i.forEach(c, (a, u) => o(a, u, l));
56
+ if (i.isPlainObject(t) || t instanceof this.constructor)
57
+ f(t, e);
58
+ else if (i.isString(t) && (t = t.trim()) && !k(t))
59
+ f(S(t), e);
60
+ else if (i.isObject(t) && i.isIterable(t)) {
61
+ let c = {}, l, a;
62
+ for (const u of t) {
63
+ if (!i.isArray(u))
64
+ throw TypeError("Object iterator must return a key-value pair");
65
+ c[a = u[0]] = (l = c[a]) ? i.isArray(l) ? [...l, u[1]] : [l, u[1]] : u[1];
66
+ }
67
+ f(c, e);
68
+ } else
69
+ t != null && o(e, t, s);
70
+ return this;
71
+ }
72
+ get(t, e) {
73
+ if (t = y(t), t) {
74
+ const s = i.findKey(this, t);
75
+ if (s) {
76
+ const n = this[s];
77
+ if (!e)
78
+ return n;
79
+ if (e === !0)
80
+ return A(n);
81
+ if (i.isFunction(e))
82
+ return e.call(this, n, s);
83
+ if (i.isRegExp(e))
84
+ return e.exec(n);
85
+ throw new TypeError("parser must be boolean|regexp|function");
86
+ }
87
+ }
88
+ }
89
+ has(t, e) {
90
+ if (t = y(t), t) {
91
+ const s = i.findKey(this, t);
92
+ return !!(s && this[s] !== void 0 && (!e || g(this, this[s], s, e)));
93
+ }
94
+ return !1;
95
+ }
96
+ delete(t, e) {
97
+ const s = this;
98
+ let n = !1;
99
+ function o(f) {
100
+ if (f = y(f), f) {
101
+ const c = i.findKey(s, f);
102
+ c && (!e || g(s, s[c], c, e)) && (delete s[c], n = !0);
103
+ }
104
+ }
105
+ return i.isArray(t) ? t.forEach(o) : o(t), n;
106
+ }
107
+ clear(t) {
108
+ const e = Object.keys(this);
109
+ let s = e.length, n = !1;
110
+ for (; s--; ) {
111
+ const o = e[s];
112
+ (!t || g(this, this[o], o, t, !0)) && (delete this[o], n = !0);
113
+ }
114
+ return n;
115
+ }
116
+ normalize(t) {
117
+ const e = this, s = {};
118
+ return i.forEach(this, (n, o) => {
119
+ const f = i.findKey(s, o);
120
+ if (f) {
121
+ e[f] = m(n), delete e[o];
122
+ return;
123
+ }
124
+ const c = t ? E(o) : String(o).trim();
125
+ c !== o && delete e[o], e[c] = m(n), s[c] = !0;
126
+ }), this;
127
+ }
128
+ concat(...t) {
129
+ return this.constructor.concat(this, ...t);
130
+ }
131
+ toJSON(t) {
132
+ const e = /* @__PURE__ */ Object.create(null);
133
+ return i.forEach(this, (s, n) => {
134
+ s != null && s !== !1 && (e[n] = t && i.isArray(s) ? s.join(", ") : s);
135
+ }), e;
136
+ }
137
+ [Symbol.iterator]() {
138
+ return Object.entries(this.toJSON())[Symbol.iterator]();
139
+ }
140
+ toString() {
141
+ return Object.entries(this.toJSON()).map(([t, e]) => t + ": " + e).join(`
142
+ `);
143
+ }
144
+ getSetCookie() {
145
+ return this.get("set-cookie") || [];
146
+ }
147
+ get [Symbol.toStringTag]() {
148
+ return "AxiosHeaders";
149
+ }
150
+ static from(t) {
151
+ return t instanceof this ? t : new this(t);
152
+ }
153
+ static concat(t, ...e) {
154
+ const s = new this(t);
155
+ return e.forEach((n) => s.set(n)), s;
156
+ }
157
+ static accessor(t) {
158
+ const s = (this[h] = this[h] = {
159
+ accessors: {}
160
+ }).accessors, n = this.prototype;
161
+ function o(f) {
162
+ const c = y(f);
163
+ s[c] || (j(n, f), s[c] = !0);
164
+ }
165
+ return i.isArray(t) ? t.forEach(o) : o(t), this;
166
+ }
167
+ }
168
+ b.accessor(["Content-Type", "Content-Length", "Accept", "Accept-Encoding", "User-Agent", "Authorization"]);
169
+ i.reduceDescriptors(b.prototype, ({ value: r }, t) => {
170
+ let e = t[0].toUpperCase() + t.slice(1);
171
+ return {
172
+ get: () => r,
173
+ set(s) {
174
+ this[e] = s;
175
+ }
176
+ };
68
177
  });
178
+ i.freezeMethods(b);
69
179
  export {
70
- e as default
180
+ b as default
71
181
  };
package/dist/index79.mjs CHANGED
@@ -1,36 +1,55 @@
1
- var a = (i, t, e = {}) => {
2
- let r = `${i}=${t}`;
3
- if (i.startsWith("__Secure-") && !e.secure)
4
- throw new Error("__Secure- Cookie must have Secure attributes");
5
- if (i.startsWith("__Host-")) {
6
- if (!e.secure)
7
- throw new Error("__Host- Cookie must have Secure attributes");
8
- if (e.path !== "/")
9
- throw new Error('__Host- Cookie must have Path attributes with "/"');
10
- if (e.domain)
11
- throw new Error("__Host- Cookie must not have Domain attributes");
1
+ import s from "./index64.mjs";
2
+ import m from "./index90.mjs";
3
+ import u from "./index91.mjs";
4
+ import { getFetch as b } from "./index92.mjs";
5
+ import d from "./index75.mjs";
6
+ const p = {
7
+ http: m,
8
+ xhr: u,
9
+ fetch: {
10
+ get: b
12
11
  }
13
- if (e && typeof e.maxAge == "number" && e.maxAge >= 0) {
14
- if (e.maxAge > 3456e4)
15
- throw new Error(
16
- "Cookies Max-Age SHOULD NOT be greater than 400 days (34560000 seconds) in duration."
17
- );
18
- r += `; Max-Age=${e.maxAge | 0}`;
12
+ };
13
+ s.forEach(p, (e, o) => {
14
+ if (e) {
15
+ try {
16
+ Object.defineProperty(e, "name", { value: o });
17
+ } catch {
18
+ }
19
+ Object.defineProperty(e, "adapterName", { value: o });
19
20
  }
20
- if (e.domain && e.prefix !== "host" && (r += `; Domain=${e.domain}`), e.path && (r += `; Path=${e.path}`), e.expires) {
21
- if (e.expires.getTime() - Date.now() > 3456e7)
22
- throw new Error(
23
- "Cookies Expires SHOULD NOT be greater than 400 days (34560000 seconds) in the future."
21
+ });
22
+ const f = (e) => `- ${e}`, g = (e) => s.isFunction(e) || e === null || e === !1, y = {
23
+ getAdapter: (e, o) => {
24
+ e = s.isArray(e) ? e : [e];
25
+ const { length: a } = e;
26
+ let i, t;
27
+ const c = {};
28
+ for (let r = 0; r < a; r++) {
29
+ i = e[r];
30
+ let n;
31
+ if (t = i, !g(i) && (t = p[(n = String(i)).toLowerCase()], t === void 0))
32
+ throw new d(`Unknown adapter '${n}'`);
33
+ if (t && (s.isFunction(t) || (t = t.get(o))))
34
+ break;
35
+ c[n || "#" + r] = t;
36
+ }
37
+ if (!t) {
38
+ const r = Object.entries(c).map(
39
+ ([l, h]) => `adapter ${l} ` + (h === !1 ? "is not supported by the environment" : "is not available in the build")
24
40
  );
25
- r += `; Expires=${e.expires.toUTCString()}`;
26
- }
27
- if (e.httpOnly && (r += "; HttpOnly"), e.secure && (r += "; Secure"), e.sameSite && (r += `; SameSite=${e.sameSite.charAt(0).toUpperCase() + e.sameSite.slice(1)}`), e.priority && (r += `; Priority=${e.priority.charAt(0).toUpperCase() + e.priority.slice(1)}`), e.partitioned) {
28
- if (!e.secure)
29
- throw new Error("Partitioned Cookie must have Secure attributes");
30
- r += "; Partitioned";
31
- }
32
- return r;
33
- }, s = (i, t, e) => (t = encodeURIComponent(t), a(i, t, e));
41
+ let n = a ? r.length > 1 ? `since :
42
+ ` + r.map(f).join(`
43
+ `) : " " + f(r[0]) : "as no adapter specified";
44
+ throw new d(
45
+ "There is no suitable adapter to dispatch the request " + n,
46
+ "ERR_NOT_SUPPORT"
47
+ );
48
+ }
49
+ return t;
50
+ },
51
+ adapters: p
52
+ };
34
53
  export {
35
- s as serialize
54
+ y as default
36
55
  };