@thednp/shorty 2.0.0-alpha5 → 2.0.0-alpha6
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/README.md +3 -2
- package/dist/shorty.cjs +1 -1
- package/dist/shorty.cjs.map +1 -1
- package/dist/shorty.d.ts +40 -40
- package/dist/shorty.js +1 -1
- package/dist/shorty.js.map +1 -1
- package/dist/shorty.mjs +278 -277
- package/dist/shorty.mjs.map +1 -1
- package/package.json +3 -3
- package/src/event/one.ts +1 -1
- package/src/get/getElementTransitionDelay.ts +3 -1
- package/src/get/getElementTransitionDuration.ts +3 -1
- package/src/index.ts +2 -0
- package/src/interface/customElement.ts +1 -1
- package/src/is/isArray.ts +1 -1
- package/src/is/isCanvas.ts +4 -2
- package/src/is/isCustomElement.ts +3 -2
- package/src/is/isDocument.ts +3 -1
- package/src/is/isElement.ts +4 -2
- package/src/is/isElementsArray.ts +1 -1
- package/src/is/isFunction.ts +1 -1
- package/src/is/isHTMLCollection.ts +4 -2
- package/src/is/isHTMLElement.ts +4 -2
- package/src/is/isHTMLImageElement.ts +4 -2
- package/src/is/isMap.ts +4 -2
- package/src/is/isMedia.ts +4 -3
- package/src/is/isNode.ts +9 -3
- package/src/is/isNodeList.ts +4 -2
- package/src/is/isNumber.ts +1 -1
- package/src/is/isObject.ts +2 -1
- package/src/is/isSVGElement.ts +4 -2
- package/src/is/isShadowRoot.ts +4 -2
- package/src/is/isString.ts +1 -1
- package/src/is/isTableElement.ts +4 -4
- package/src/is/isWeakMap.ts +4 -2
- package/src/is/isWindow.ts +4 -2
- package/src/misc/createElement.ts +1 -3
- package/src/misc/createElementNS.ts +1 -1
- package/src/misc/data.ts +14 -22
- package/src/misc/hasOwn.ts +17 -0
- package/src/selectors/querySelector.ts +6 -5
package/dist/shorty.mjs
CHANGED
|
@@ -1,55 +1,55 @@
|
|
|
1
|
-
const de = "aria-checked", pe = "aria-description", fe = "aria-describedby", me = "aria-expanded", ge = "aria-haspopup", Ee = "aria-hidden", ve = "aria-label", be = "aria-labelledby", he = "aria-modal", ye = "aria-pressed", we = "aria-selected", Ae = "aria-valuemin", Se = "aria-valuemax", Me = "aria-valuenow", Ne = "aria-valuetext",
|
|
2
|
-
DOMContentLoaded:
|
|
3
|
-
DOMMouseScroll:
|
|
4
|
-
abort:
|
|
5
|
-
beforeunload:
|
|
6
|
-
blur:
|
|
7
|
-
change:
|
|
8
|
-
click:
|
|
9
|
-
contextmenu:
|
|
10
|
-
dblclick:
|
|
11
|
-
error:
|
|
12
|
-
focus:
|
|
13
|
-
focusin:
|
|
14
|
-
focusout:
|
|
15
|
-
gesturechange:
|
|
16
|
-
gestureend:
|
|
17
|
-
gesturestart:
|
|
18
|
-
hover:
|
|
19
|
-
keydown:
|
|
20
|
-
keypress:
|
|
21
|
-
keyup:
|
|
22
|
-
load:
|
|
23
|
-
mousedown:
|
|
24
|
-
mousemove:
|
|
25
|
-
mousein:
|
|
26
|
-
mouseout:
|
|
27
|
-
mouseenter:
|
|
28
|
-
mouseleave:
|
|
29
|
-
mouseover:
|
|
30
|
-
mouseup:
|
|
31
|
-
mousewheel:
|
|
32
|
-
move:
|
|
33
|
-
orientationchange:
|
|
34
|
-
pointercancel:
|
|
35
|
-
pointerdown:
|
|
36
|
-
pointerleave:
|
|
37
|
-
pointermove:
|
|
38
|
-
pointerup:
|
|
1
|
+
const de = "aria-checked", pe = "aria-description", fe = "aria-describedby", me = "aria-expanded", ge = "aria-haspopup", Ee = "aria-hidden", ve = "aria-label", be = "aria-labelledby", he = "aria-modal", ye = "aria-pressed", we = "aria-selected", Ae = "aria-valuemin", Se = "aria-valuemax", Me = "aria-valuenow", Ne = "aria-valuetext", G = "abort", Y = "beforeunload", j = "blur", J = "change", K = "contextmenu", z = "DOMContentLoaded", X = "DOMMouseScroll", Z = "error", $ = "focus", _ = "focusin", tt = "focusout", et = "gesturechange", nt = "gestureend", ot = "gesturestart", st = "keydown", ct = "keypress", rt = "keyup", it = "load", at = "click", ut = "dblclick", lt = "mousedown", dt = "mouseup", pt = "hover", ft = "mouseenter", mt = "mouseleave", gt = "mousein", Et = "mouseout", vt = "mouseover", bt = "mousemove", ht = "mousewheel", yt = "move", wt = "orientationchange", At = "pointercancel", St = "pointerdown", Mt = "pointerleave", Nt = "pointermove", Tt = "pointerup", kt = "readystatechange", Dt = "reset", Ct = "resize", Lt = "select", Ot = "selectend", It = "selectstart", zt = "scroll", xt = "submit", Vt = "touchstart", Bt = "touchmove", Ht = "touchcancel", Pt = "touchend", Ut = "unload", Te = {
|
|
2
|
+
DOMContentLoaded: z,
|
|
3
|
+
DOMMouseScroll: X,
|
|
4
|
+
abort: G,
|
|
5
|
+
beforeunload: Y,
|
|
6
|
+
blur: j,
|
|
7
|
+
change: J,
|
|
8
|
+
click: at,
|
|
9
|
+
contextmenu: K,
|
|
10
|
+
dblclick: ut,
|
|
11
|
+
error: Z,
|
|
12
|
+
focus: $,
|
|
13
|
+
focusin: _,
|
|
14
|
+
focusout: tt,
|
|
15
|
+
gesturechange: et,
|
|
16
|
+
gestureend: nt,
|
|
17
|
+
gesturestart: ot,
|
|
18
|
+
hover: pt,
|
|
19
|
+
keydown: st,
|
|
20
|
+
keypress: ct,
|
|
21
|
+
keyup: rt,
|
|
22
|
+
load: it,
|
|
23
|
+
mousedown: lt,
|
|
24
|
+
mousemove: bt,
|
|
25
|
+
mousein: gt,
|
|
26
|
+
mouseout: Et,
|
|
27
|
+
mouseenter: ft,
|
|
28
|
+
mouseleave: mt,
|
|
29
|
+
mouseover: vt,
|
|
30
|
+
mouseup: dt,
|
|
31
|
+
mousewheel: ht,
|
|
32
|
+
move: yt,
|
|
33
|
+
orientationchange: wt,
|
|
34
|
+
pointercancel: At,
|
|
35
|
+
pointerdown: St,
|
|
36
|
+
pointerleave: Mt,
|
|
37
|
+
pointermove: Nt,
|
|
38
|
+
pointerup: Tt,
|
|
39
39
|
readystatechange: kt,
|
|
40
|
-
reset:
|
|
41
|
-
resize:
|
|
42
|
-
scroll:
|
|
43
|
-
select:
|
|
44
|
-
selectend:
|
|
45
|
-
selectstart:
|
|
46
|
-
submit:
|
|
47
|
-
touchcancel:
|
|
48
|
-
touchend:
|
|
49
|
-
touchmove:
|
|
50
|
-
touchstart:
|
|
51
|
-
unload:
|
|
52
|
-
},
|
|
40
|
+
reset: Dt,
|
|
41
|
+
resize: Ct,
|
|
42
|
+
scroll: zt,
|
|
43
|
+
select: Lt,
|
|
44
|
+
selectend: Ot,
|
|
45
|
+
selectstart: It,
|
|
46
|
+
submit: xt,
|
|
47
|
+
touchcancel: Ht,
|
|
48
|
+
touchend: Pt,
|
|
49
|
+
touchmove: Bt,
|
|
50
|
+
touchstart: Vt,
|
|
51
|
+
unload: Ut
|
|
52
|
+
}, ke = "loadstart", De = {
|
|
53
53
|
start: "mousedown",
|
|
54
54
|
end: "mouseup",
|
|
55
55
|
move: "mousemove",
|
|
@@ -79,7 +79,7 @@ const de = "aria-checked", pe = "aria-description", fe = "aria-describedby", me
|
|
|
79
79
|
Meta: "Meta",
|
|
80
80
|
ContextMenu: "ContextMenu",
|
|
81
81
|
ScrollLock: "ScrollLock"
|
|
82
|
-
}, xe = "Alt", Ve = "ArrowDown", Be = "ArrowUp", He = "ArrowLeft", Pe = "ArrowRight", Ue = "Backspace", Fe = "CapsLock", We = "Control", Re = "Delete", Qe = "Enter",
|
|
82
|
+
}, xe = "Alt", Ve = "ArrowDown", Be = "ArrowUp", He = "ArrowLeft", Pe = "ArrowRight", Ue = "Backspace", Fe = "CapsLock", We = "Control", Re = "Delete", Qe = "Enter", qe = "Escape", Ge = "Insert", Ye = "Meta", je = "Pause", Je = "ScrollLock", Ke = "Shift", Xe = "Space", Ze = "Tab", Ft = "animationDuration", Wt = "animationDelay", x = "animationName", k = "animationend", Rt = "transitionDuration", Qt = "transitionDelay", D = "transitionend", V = "transitionProperty", $e = "addEventListener", _e = "removeEventListener", tn = {
|
|
83
83
|
linear: "linear",
|
|
84
84
|
easingSinusoidalIn: "cubic-bezier(0.47,0,0.745,0.715)",
|
|
85
85
|
easingSinusoidalOut: "cubic-bezier(0.39,0.575,0.565,1)",
|
|
@@ -105,185 +105,185 @@ const de = "aria-checked", pe = "aria-description", fe = "aria-describedby", me
|
|
|
105
105
|
easingBackIn: "cubic-bezier(0.6,-0.28,0.735,0.045)",
|
|
106
106
|
easingBackOut: "cubic-bezier(0.175,0.885,0.32,1.275)",
|
|
107
107
|
easingBackInOut: "cubic-bezier(0.68,-0.55,0.265,1.55)"
|
|
108
|
-
}, en = "offsetHeight", nn = "offsetWidth", on = "scrollHeight", sn = "scrollWidth", cn = "tabindex", rn = navigator.userAgentData,
|
|
109
|
-
let
|
|
110
|
-
|
|
111
|
-
const un =
|
|
108
|
+
}, en = "offsetHeight", nn = "offsetWidth", on = "scrollHeight", sn = "scrollWidth", cn = "tabindex", rn = navigator.userAgentData, A = rn, { userAgent: an } = navigator, S = an, W = /iPhone|iPad|iPod|Android/i;
|
|
109
|
+
let O = !1;
|
|
110
|
+
A ? O = A.brands.some((t) => W.test(t.brand)) : O = W.test(S);
|
|
111
|
+
const un = O, R = /(iPhone|iPod|iPad)/, ln = A ? A.brands.some((t) => R.test(t.brand)) : R.test(S), dn = S ? S.includes("Firefox") : !1, { head: M } = document, pn = ["webkitPerspective", "perspective"].some((t) => t in M.style), qt = (t, e, n, o) => {
|
|
112
112
|
const s = o || !1;
|
|
113
113
|
t.addEventListener(e, n, s);
|
|
114
|
-
},
|
|
114
|
+
}, Gt = (t, e, n, o) => {
|
|
115
115
|
const s = o || !1;
|
|
116
116
|
t.removeEventListener(e, n, s);
|
|
117
|
-
},
|
|
117
|
+
}, Yt = (t, e, n, o) => {
|
|
118
118
|
const s = (c) => {
|
|
119
|
-
c.target === t && (n.apply(t, [c]),
|
|
119
|
+
(c.target === t || c.currentTarget === t) && (n.apply(t, [c]), Gt(t, e, s, o));
|
|
120
120
|
};
|
|
121
|
-
|
|
122
|
-
},
|
|
121
|
+
qt(t, e, s, o);
|
|
122
|
+
}, jt = () => {
|
|
123
123
|
}, fn = (() => {
|
|
124
124
|
let t = !1;
|
|
125
125
|
try {
|
|
126
126
|
const e = Object.defineProperty({}, "passive", {
|
|
127
127
|
get: () => (t = !0, t)
|
|
128
128
|
});
|
|
129
|
-
|
|
129
|
+
Yt(document, z, jt, e);
|
|
130
130
|
} catch {
|
|
131
131
|
}
|
|
132
132
|
return t;
|
|
133
|
-
})(), mn = ["webkitTransform", "transform"].some((t) => t in
|
|
133
|
+
})(), mn = ["webkitTransform", "transform"].some((t) => t in M.style), gn = "ontouchstart" in window || "msMaxTouchPoints" in navigator, En = ["webkitAnimation", "animation"].some((t) => t in M.style), vn = ["webkitTransition", "transition"].some((t) => t in M.style), Jt = (t, e) => t.getAttribute(e), bn = (t, e, n) => e.getAttributeNS(t, n), hn = (t, e) => t.hasAttribute(e), yn = (t, e, n) => e.hasAttributeNS(t, n), B = (t, e, n) => t.setAttribute(e, n), wn = (t, e, n, o) => e.setAttributeNS(t, n, o), An = (t, e) => t.removeAttribute(e), Sn = (t, e, n) => e.removeAttributeNS(t, n), Mn = (t, ...e) => {
|
|
134
134
|
t.classList.add(...e);
|
|
135
135
|
}, Nn = (t, ...e) => {
|
|
136
136
|
t.classList.remove(...e);
|
|
137
|
-
},
|
|
137
|
+
}, Tn = (t, e) => t.classList.contains(e), { body: kn } = document, { documentElement: Dn } = document, Cn = (t) => Array.from(t), m = (t) => t != null && typeof t == "object" || !1, a = (t) => m(t) && typeof t.nodeType == "number" && [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11].some((e) => t.nodeType === e) || !1, u = (t) => a(t) && t.nodeType === 1 || !1, w = /* @__PURE__ */ new Map(), C = {
|
|
138
138
|
set: (t, e, n) => {
|
|
139
139
|
if (!u(t))
|
|
140
140
|
return;
|
|
141
|
-
|
|
141
|
+
w.has(e) || w.set(e, /* @__PURE__ */ new Map()), w.get(e).set(t, n);
|
|
142
142
|
},
|
|
143
|
-
getAllFor: (t) =>
|
|
143
|
+
getAllFor: (t) => w.get(t) || null,
|
|
144
144
|
get: (t, e) => {
|
|
145
145
|
if (!u(t) || !e)
|
|
146
146
|
return null;
|
|
147
|
-
const n =
|
|
147
|
+
const n = C.getAllFor(e);
|
|
148
148
|
return t && n && n.get(t) || null;
|
|
149
149
|
},
|
|
150
150
|
remove: (t, e) => {
|
|
151
|
-
const n =
|
|
152
|
-
!n || !u(t) || (n.delete(t), n.size === 0 &&
|
|
151
|
+
const n = C.getAllFor(e);
|
|
152
|
+
!n || !u(t) || (n.delete(t), n.size === 0 && w.delete(e));
|
|
153
153
|
}
|
|
154
|
-
}, Ln = (t, e) =>
|
|
154
|
+
}, Ln = (t, e) => C.get(t, e), p = (t) => typeof t == "string" || !1, H = (t) => m(t) && t.constructor.name === "Window" || !1, P = (t) => a(t) && t.nodeType === 9 || !1, d = (t) => H(t) ? t.document : P(t) ? t : a(t) ? t.ownerDocument : window.document, b = (t) => Object.entries(t), Kt = (t) => {
|
|
155
155
|
if (!t)
|
|
156
156
|
return;
|
|
157
157
|
if (p(t))
|
|
158
158
|
return d().createElement(t);
|
|
159
|
-
const { tagName: e } = t, n =
|
|
159
|
+
const { tagName: e } = t, n = Kt(e);
|
|
160
160
|
if (!n)
|
|
161
161
|
return;
|
|
162
162
|
const o = { ...t };
|
|
163
|
-
return delete o.tagName,
|
|
164
|
-
p(s) && p(c) &&
|
|
163
|
+
return delete o.tagName, b(o).forEach(([s, c]) => {
|
|
164
|
+
p(s) && p(c) && B(n, s, c);
|
|
165
165
|
}), n;
|
|
166
|
-
},
|
|
166
|
+
}, Xt = (t, e) => {
|
|
167
167
|
if (!t || !e)
|
|
168
168
|
return;
|
|
169
169
|
if (p(e))
|
|
170
170
|
return d().createElementNS(t, e);
|
|
171
|
-
const { tagName: n } = e, o =
|
|
171
|
+
const { tagName: n } = e, o = Xt(t, n);
|
|
172
172
|
if (!o)
|
|
173
173
|
return;
|
|
174
174
|
const s = { ...e };
|
|
175
|
-
return delete s.tagName,
|
|
176
|
-
p(c) && p(i) &&
|
|
175
|
+
return delete s.tagName, b(s).forEach(([c, i]) => {
|
|
176
|
+
p(c) && p(i) && B(o, c, i);
|
|
177
177
|
}), o;
|
|
178
|
-
},
|
|
178
|
+
}, U = (t, e) => t.dispatchEvent(e), On = (t, e, n) => n.indexOf(t) === e, f = (t, e) => {
|
|
179
179
|
const n = getComputedStyle(t), o = e.replace("webkit", "Webkit").replace(/([A-Z])/g, "-$1").toLowerCase();
|
|
180
180
|
return n.getPropertyValue(o);
|
|
181
|
-
}, Xt = (t) => {
|
|
182
|
-
const e = f(t, z), n = f(t, Ft), o = n.includes("ms") ? 1 : 1e3, s = e && e !== "none" ? parseFloat(n) * o : 0;
|
|
183
|
-
return Number.isNaN(s) ? 0 : s;
|
|
184
181
|
}, Zt = (t) => {
|
|
185
|
-
const e = f(t,
|
|
182
|
+
const e = f(t, x), n = f(t, Wt), o = n.includes("ms") ? 1 : 1e3, s = e && e !== "none" ? parseFloat(n) * o : 0;
|
|
183
|
+
return Number.isNaN(s) ? 0 : s;
|
|
184
|
+
}, $t = (t) => {
|
|
185
|
+
const e = f(t, x), n = f(t, Ft), o = n.includes("ms") ? 1 : 1e3, s = e && e !== "none" ? parseFloat(n) * o : 0;
|
|
186
186
|
return Number.isNaN(s) ? 0 : s;
|
|
187
187
|
}, In = (t, e) => {
|
|
188
188
|
let n = 0;
|
|
189
|
-
const o = new Event(k), s =
|
|
189
|
+
const o = new Event(k), s = $t(t), c = Zt(t);
|
|
190
190
|
if (s) {
|
|
191
|
-
const i = (
|
|
192
|
-
|
|
191
|
+
const i = (l) => {
|
|
192
|
+
l.target === t && (e.apply(t, [l]), t.removeEventListener(k, i), n = 1);
|
|
193
193
|
};
|
|
194
194
|
t.addEventListener(k, i), setTimeout(() => {
|
|
195
|
-
n ||
|
|
195
|
+
n || U(t, o);
|
|
196
196
|
}, s + c + 17);
|
|
197
197
|
} else
|
|
198
198
|
e.apply(t, [o]);
|
|
199
|
-
}, $t = (t) => {
|
|
200
|
-
const e = f(t, x), n = f(t, Rt), o = n.includes("ms") ? 1 : 1e3, s = e && e !== "none" ? parseFloat(n) * o : 0;
|
|
201
|
-
return Number.isNaN(s) ? 0 : s;
|
|
202
199
|
}, _t = (t) => {
|
|
203
|
-
const e = f(t,
|
|
200
|
+
const e = f(t, V), n = f(t, Qt), o = n.includes("ms") ? 1 : 1e3, s = e && e !== "none" ? parseFloat(n) * o : 0;
|
|
201
|
+
return Number.isNaN(s) ? 0 : s;
|
|
202
|
+
}, te = (t) => {
|
|
203
|
+
const e = f(t, V), n = f(t, Rt), o = n.includes("ms") ? 1 : 1e3, s = e && e !== "none" ? parseFloat(n) * o : 0;
|
|
204
204
|
return Number.isNaN(s) ? 0 : s;
|
|
205
205
|
}, zn = (t, e) => {
|
|
206
206
|
let n = 0;
|
|
207
|
-
const o = new Event(
|
|
207
|
+
const o = new Event(D), s = te(t), c = _t(t);
|
|
208
208
|
if (s) {
|
|
209
|
-
const i = (
|
|
210
|
-
|
|
209
|
+
const i = (l) => {
|
|
210
|
+
l.target === t && (e.apply(t, [l]), t.removeEventListener(D, i), n = 1);
|
|
211
211
|
};
|
|
212
|
-
t.addEventListener(
|
|
213
|
-
n ||
|
|
212
|
+
t.addEventListener(D, i), setTimeout(() => {
|
|
213
|
+
n || U(t, o);
|
|
214
214
|
}, s + c + 17);
|
|
215
215
|
} else
|
|
216
216
|
e.apply(t, [o]);
|
|
217
|
-
}, xn = (t) => Float32Array.from(Array.from(t)), Vn = (t) => Float64Array.from(Array.from(t)), Bn = (t, e) => t.focus(e),
|
|
218
|
-
const s = { ...n }, c = { ...t.dataset }, i = { ...e },
|
|
219
|
-
return
|
|
220
|
-
const
|
|
221
|
-
|
|
222
|
-
}),
|
|
223
|
-
s[r] =
|
|
224
|
-
}),
|
|
225
|
-
r in s ? i[r] = s[r] : r in
|
|
217
|
+
}, xn = (t) => Float32Array.from(Array.from(t)), Vn = (t) => Float64Array.from(Array.from(t)), Bn = (t, e) => t.focus(e), Hn = (t, e) => m(t) && (Object.hasOwn(t, e) || e in t), I = (t) => ["true", !0].includes(t) ? !0 : ["false", !1].includes(t) ? !1 : ["null", "", null, void 0].includes(t) ? null : t !== "" && !Number.isNaN(+t) ? +t : t, ee = (t) => t.toLowerCase(), Pn = (t, e, n, o) => {
|
|
218
|
+
const s = { ...n }, c = { ...t.dataset }, i = { ...e }, l = {}, g = "title";
|
|
219
|
+
return b(c).forEach(([r, E]) => {
|
|
220
|
+
const T = o && typeof r == "string" && r.includes(o) ? r.replace(o, "").replace(/[A-Z]/g, (le) => ee(le)) : r;
|
|
221
|
+
l[T] = I(E);
|
|
222
|
+
}), b(s).forEach(([r, E]) => {
|
|
223
|
+
s[r] = I(E);
|
|
224
|
+
}), b(e).forEach(([r, E]) => {
|
|
225
|
+
r in s ? i[r] = s[r] : r in l ? i[r] = l[r] : i[r] = r === g ? Jt(t, g) : E;
|
|
226
226
|
}), i;
|
|
227
|
-
},
|
|
227
|
+
}, F = (t, ...e) => Object.assign(t, ...e), Un = (t) => Object.keys(t), Fn = (t) => Object.values(t), Wn = (t, e) => {
|
|
228
228
|
const n = new CustomEvent(t, {
|
|
229
229
|
cancelable: !0,
|
|
230
230
|
bubbles: !0
|
|
231
231
|
});
|
|
232
|
-
return
|
|
233
|
-
},
|
|
234
|
-
|
|
232
|
+
return m(e) && F(n, e), n;
|
|
233
|
+
}, Rn = { passive: !0 }, Qn = (t) => t.offsetHeight, qn = (t, e) => {
|
|
234
|
+
b(e).forEach(([n, o]) => {
|
|
235
235
|
if (o && p(n) && n.includes("--"))
|
|
236
236
|
t.style.setProperty(n, o);
|
|
237
237
|
else {
|
|
238
238
|
const s = {};
|
|
239
|
-
s[n] = o,
|
|
239
|
+
s[n] = o, F(t.style, s);
|
|
240
240
|
}
|
|
241
241
|
});
|
|
242
|
-
},
|
|
242
|
+
}, L = (t) => m(t) && t.constructor.name === "Map" || !1, ne = (t) => typeof t == "number" || !1, v = /* @__PURE__ */ new Map(), Gn = {
|
|
243
243
|
set: (t, e, n, o) => {
|
|
244
|
-
!u(t) || (o && o.length ? (
|
|
244
|
+
!u(t) || (o && o.length ? (v.has(t) || v.set(t, /* @__PURE__ */ new Map()), v.get(t).set(o, setTimeout(e, n))) : v.set(t, setTimeout(e, n)));
|
|
245
245
|
},
|
|
246
246
|
get: (t, e) => {
|
|
247
247
|
if (!u(t))
|
|
248
248
|
return null;
|
|
249
|
-
const n =
|
|
250
|
-
return e && n &&
|
|
249
|
+
const n = v.get(t);
|
|
250
|
+
return e && n && L(n) ? n.get(e) || null : ne(n) ? n : null;
|
|
251
251
|
},
|
|
252
252
|
clear: (t, e) => {
|
|
253
253
|
if (!u(t))
|
|
254
254
|
return;
|
|
255
|
-
const n =
|
|
256
|
-
e && e.length &&
|
|
255
|
+
const n = v.get(t);
|
|
256
|
+
e && e.length && L(n) ? (clearTimeout(n.get(e)), n.delete(e), n.size === 0 && v.delete(t)) : (clearTimeout(n), v.delete(t));
|
|
257
257
|
}
|
|
258
|
-
},
|
|
259
|
-
const { width: n, height: o, top: s, right: c, bottom: i, left:
|
|
260
|
-
let
|
|
258
|
+
}, Yn = (t) => t.toUpperCase(), y = (t, e) => {
|
|
259
|
+
const { width: n, height: o, top: s, right: c, bottom: i, left: l } = t.getBoundingClientRect();
|
|
260
|
+
let g = 1, r = 1;
|
|
261
261
|
if (e && u(t)) {
|
|
262
|
-
const { offsetWidth:
|
|
263
|
-
|
|
262
|
+
const { offsetWidth: E, offsetHeight: T } = t;
|
|
263
|
+
g = E > 0 ? Math.round(n) / E : 1, r = T > 0 ? Math.round(o) / T : 1;
|
|
264
264
|
}
|
|
265
265
|
return {
|
|
266
|
-
width: n /
|
|
266
|
+
width: n / g,
|
|
267
267
|
height: o / r,
|
|
268
268
|
top: s / r,
|
|
269
|
-
right: c /
|
|
269
|
+
right: c / g,
|
|
270
270
|
bottom: i / r,
|
|
271
|
-
left:
|
|
272
|
-
x:
|
|
271
|
+
left: l / g,
|
|
272
|
+
x: l / g,
|
|
273
273
|
y: s / r
|
|
274
274
|
};
|
|
275
|
-
},
|
|
276
|
-
const e =
|
|
275
|
+
}, jn = (t) => d(t).body, N = (t) => d(t).documentElement, Jn = (t) => d(t).head, Kn = (t) => {
|
|
276
|
+
const e = H(t), n = e ? t.scrollX : t.scrollLeft, o = e ? t.scrollY : t.scrollTop;
|
|
277
277
|
return { x: n, y: o };
|
|
278
|
-
}, oe = (t) => t && t.constructor.name === "ShadowRoot" || !1,
|
|
278
|
+
}, oe = (t) => a(t) && t.constructor.name === "ShadowRoot" || !1, Xn = (t) => t.nodeName === "HTML" ? t : u(t) && t.assignedSlot || a(t) && t.parentNode || oe(t) && t.host || N(t), se = (t) => {
|
|
279
279
|
if (!u(t))
|
|
280
280
|
return !1;
|
|
281
|
-
const { width: e, height: n } =
|
|
281
|
+
const { width: e, height: n } = y(t), { offsetWidth: o, offsetHeight: s } = t;
|
|
282
282
|
return Math.round(e) !== o || Math.round(n) !== s;
|
|
283
|
-
},
|
|
284
|
-
const o = u(e), s =
|
|
283
|
+
}, Zn = (t, e, n) => {
|
|
284
|
+
const o = u(e), s = y(t, o && se(e)), c = { x: 0, y: 0 };
|
|
285
285
|
if (o) {
|
|
286
|
-
const i =
|
|
286
|
+
const i = y(e, !0);
|
|
287
287
|
c.x = i.x + e.clientLeft, c.y = i.y + e.clientTop;
|
|
288
288
|
}
|
|
289
289
|
return {
|
|
@@ -293,31 +293,31 @@ const un = L, W = /(iPhone|iPod|iPad)/, ln = w ? w.brands.some((t) => W.test(t.b
|
|
|
293
293
|
height: s.height
|
|
294
294
|
};
|
|
295
295
|
};
|
|
296
|
-
let
|
|
297
|
-
const
|
|
298
|
-
let n = e ?
|
|
296
|
+
let Q = 0, q = 0;
|
|
297
|
+
const h = /* @__PURE__ */ new Map(), ce = (t, e) => {
|
|
298
|
+
let n = e ? Q : q;
|
|
299
299
|
if (e) {
|
|
300
|
-
const o = ce(t), s =
|
|
301
|
-
|
|
300
|
+
const o = ce(t), s = h.get(o) || /* @__PURE__ */ new Map();
|
|
301
|
+
h.has(o) || h.set(o, s), L(s) && !s.has(e) ? (s.set(e, n), Q += 1) : n = s.get(e);
|
|
302
302
|
} else {
|
|
303
303
|
const o = t.id || t;
|
|
304
|
-
|
|
304
|
+
h.has(o) ? n = h.get(o) : (h.set(o, n), q += 1);
|
|
305
305
|
}
|
|
306
306
|
return n;
|
|
307
|
-
},
|
|
307
|
+
}, $n = (t) => {
|
|
308
308
|
var e;
|
|
309
|
-
return t ?
|
|
310
|
-
}, re = (t) => Array.isArray(t) || !1,
|
|
311
|
-
if (!
|
|
309
|
+
return t ? P(t) ? t.defaultView : a(t) ? (e = t == null ? void 0 : t.ownerDocument) == null ? void 0 : e.defaultView : t : window;
|
|
310
|
+
}, re = (t) => Array.isArray(t) || !1, _n = (t) => a(t) && t.nodeName === "CANVAS" || !1, ie = (t) => u(t) && !!t.shadowRoot || !1, to = (t) => a(t) && [1, 2, 3, 4, 5, 6, 7, 8].some((e) => t.nodeType === e) || !1, eo = (t) => {
|
|
311
|
+
if (!a(t))
|
|
312
312
|
return !1;
|
|
313
|
-
const { top: e, bottom: n } =
|
|
313
|
+
const { top: e, bottom: n } = y(t), { clientHeight: o } = N(t);
|
|
314
314
|
return e <= o && n >= 0;
|
|
315
|
-
},
|
|
316
|
-
if (!
|
|
315
|
+
}, no = (t) => {
|
|
316
|
+
if (!a(t))
|
|
317
317
|
return !1;
|
|
318
|
-
const { clientWidth: e, clientHeight: n } =
|
|
318
|
+
const { clientWidth: e, clientHeight: n } = N(t), { top: o, left: s, bottom: c, right: i } = y(t, !0);
|
|
319
319
|
return o >= 0 && s >= 0 && c <= n && i <= e;
|
|
320
|
-
},
|
|
320
|
+
}, oo = (t) => re(t) && t.every(u) || !1, so = (t) => typeof t == "function" || !1, co = (t) => m(t) && t.constructor.name === "HTMLCollection" || !1, ro = (t) => u(t) && t.tagName === "IMG" || !1, io = (t) => {
|
|
321
321
|
if (!p(t))
|
|
322
322
|
return !1;
|
|
323
323
|
try {
|
|
@@ -326,9 +326,9 @@ const b = /* @__PURE__ */ new Map(), ce = (t, e) => {
|
|
|
326
326
|
return !1;
|
|
327
327
|
}
|
|
328
328
|
return !0;
|
|
329
|
-
},
|
|
329
|
+
}, ao = (t) => m(t) && t.constructor.name === "WeakMap" || !1, uo = (t) => a(t) && ["SVG", "Image", "Video", "Canvas"].some((e) => t.constructor.name.includes(e)) || !1, lo = (t) => m(t) && t.constructor.name === "NodeList" || !1, po = (t) => N(t).dir === "rtl", fo = (t) => a(t) && t.constructor.name.includes("SVG") || !1, mo = (t) => a(t) && ["TABLE", "TD", "TH"].includes(t.nodeName) || !1, ae = (t, e) => t ? t.closest(e) || ae(t.getRootNode().host, e) : null, go = (t, e) => u(t) ? t : (a(e) ? e : d()).querySelector(t), ue = (t, e) => (a(e) ? e : d()).getElementsByTagName(t), Eo = (t) => [...ue("*", t)].filter(ie), vo = (t, e) => d(e).getElementById(t) || null, bo = (t, e) => (a(e) ? e : d()).querySelectorAll(t), ho = (t, e) => (e && a(e) ? e : d()).getElementsByClassName(
|
|
330
330
|
t
|
|
331
|
-
),
|
|
331
|
+
), yo = (t, e) => t.matches(e), wo = {
|
|
332
332
|
ariaChecked: de,
|
|
333
333
|
ariaDescription: pe,
|
|
334
334
|
ariaDescribedBy: fe,
|
|
@@ -344,69 +344,69 @@ const b = /* @__PURE__ */ new Map(), ce = (t, e) => {
|
|
|
344
344
|
ariaValueMax: Se,
|
|
345
345
|
ariaValueNow: Me,
|
|
346
346
|
ariaValueText: Ne,
|
|
347
|
-
nativeEvents:
|
|
348
|
-
abortEvent:
|
|
349
|
-
blurEvent:
|
|
350
|
-
moveEvent:
|
|
351
|
-
changeEvent:
|
|
352
|
-
errorEvent:
|
|
353
|
-
resetEvent:
|
|
354
|
-
resizeEvent:
|
|
355
|
-
scrollEvent:
|
|
356
|
-
submitEvent:
|
|
357
|
-
loadEvent:
|
|
358
|
-
loadstartEvent:
|
|
359
|
-
unloadEvent:
|
|
347
|
+
nativeEvents: Te,
|
|
348
|
+
abortEvent: G,
|
|
349
|
+
blurEvent: j,
|
|
350
|
+
moveEvent: yt,
|
|
351
|
+
changeEvent: J,
|
|
352
|
+
errorEvent: Z,
|
|
353
|
+
resetEvent: Dt,
|
|
354
|
+
resizeEvent: Ct,
|
|
355
|
+
scrollEvent: zt,
|
|
356
|
+
submitEvent: xt,
|
|
357
|
+
loadEvent: it,
|
|
358
|
+
loadstartEvent: ke,
|
|
359
|
+
unloadEvent: Ut,
|
|
360
360
|
readystatechangeEvent: kt,
|
|
361
|
-
beforeunloadEvent:
|
|
362
|
-
orientationchangeEvent:
|
|
363
|
-
contextmenuEvent:
|
|
364
|
-
DOMContentLoadedEvent:
|
|
365
|
-
DOMMouseScrollEvent:
|
|
366
|
-
selectEvent:
|
|
367
|
-
selectendEvent:
|
|
368
|
-
selectstartEvent:
|
|
361
|
+
beforeunloadEvent: Y,
|
|
362
|
+
orientationchangeEvent: wt,
|
|
363
|
+
contextmenuEvent: K,
|
|
364
|
+
DOMContentLoadedEvent: z,
|
|
365
|
+
DOMMouseScrollEvent: X,
|
|
366
|
+
selectEvent: Lt,
|
|
367
|
+
selectendEvent: Ot,
|
|
368
|
+
selectstartEvent: It,
|
|
369
369
|
mouseClickEvents: Ce,
|
|
370
|
-
mouseclickEvent:
|
|
371
|
-
mousedblclickEvent:
|
|
372
|
-
mousedownEvent:
|
|
373
|
-
mouseupEvent:
|
|
374
|
-
mousehoverEvent:
|
|
370
|
+
mouseclickEvent: at,
|
|
371
|
+
mousedblclickEvent: ut,
|
|
372
|
+
mousedownEvent: lt,
|
|
373
|
+
mouseupEvent: dt,
|
|
374
|
+
mousehoverEvent: pt,
|
|
375
375
|
mouseHoverEvents: Le,
|
|
376
|
-
mouseenterEvent:
|
|
377
|
-
mouseleaveEvent:
|
|
378
|
-
mouseinEvent:
|
|
379
|
-
mouseoutEvent:
|
|
380
|
-
mouseoverEvent:
|
|
381
|
-
mousemoveEvent:
|
|
382
|
-
mousewheelEvent:
|
|
376
|
+
mouseenterEvent: ft,
|
|
377
|
+
mouseleaveEvent: mt,
|
|
378
|
+
mouseinEvent: gt,
|
|
379
|
+
mouseoutEvent: Et,
|
|
380
|
+
mouseoverEvent: vt,
|
|
381
|
+
mousemoveEvent: bt,
|
|
382
|
+
mousewheelEvent: ht,
|
|
383
383
|
mouseSwipeEvents: De,
|
|
384
384
|
touchEvents: Oe,
|
|
385
|
-
touchstartEvent:
|
|
386
|
-
touchmoveEvent:
|
|
387
|
-
touchcancelEvent:
|
|
388
|
-
touchendEvent:
|
|
389
|
-
pointercancelEvent:
|
|
390
|
-
pointerdownEvent:
|
|
391
|
-
pointerleaveEvent:
|
|
392
|
-
pointermoveEvent:
|
|
393
|
-
pointerupEvent:
|
|
385
|
+
touchstartEvent: Vt,
|
|
386
|
+
touchmoveEvent: Bt,
|
|
387
|
+
touchcancelEvent: Ht,
|
|
388
|
+
touchendEvent: Pt,
|
|
389
|
+
pointercancelEvent: At,
|
|
390
|
+
pointerdownEvent: St,
|
|
391
|
+
pointerleaveEvent: Mt,
|
|
392
|
+
pointermoveEvent: Nt,
|
|
393
|
+
pointerupEvent: Tt,
|
|
394
394
|
focusEvents: Ie,
|
|
395
|
-
focusEvent:
|
|
396
|
-
focusinEvent:
|
|
397
|
-
focusoutEvent:
|
|
398
|
-
gesturechangeEvent:
|
|
399
|
-
gestureendEvent:
|
|
400
|
-
gesturestartEvent:
|
|
395
|
+
focusEvent: $,
|
|
396
|
+
focusinEvent: _,
|
|
397
|
+
focusoutEvent: tt,
|
|
398
|
+
gesturechangeEvent: et,
|
|
399
|
+
gestureendEvent: nt,
|
|
400
|
+
gesturestartEvent: ot,
|
|
401
401
|
bezierEasings: tn,
|
|
402
|
-
animationDuration:
|
|
403
|
-
animationDelay:
|
|
404
|
-
animationName:
|
|
402
|
+
animationDuration: Ft,
|
|
403
|
+
animationDelay: Wt,
|
|
404
|
+
animationName: x,
|
|
405
405
|
animationEndEvent: k,
|
|
406
|
-
transitionDuration:
|
|
407
|
-
transitionDelay:
|
|
408
|
-
transitionEndEvent:
|
|
409
|
-
transitionProperty:
|
|
406
|
+
transitionDuration: Rt,
|
|
407
|
+
transitionDelay: Qt,
|
|
408
|
+
transitionEndEvent: D,
|
|
409
|
+
transitionProperty: V,
|
|
410
410
|
isMobile: un,
|
|
411
411
|
isApple: ln,
|
|
412
412
|
isFirefox: dn,
|
|
@@ -419,9 +419,9 @@ const b = /* @__PURE__ */ new Map(), ce = (t, e) => {
|
|
|
419
419
|
addEventListener: $e,
|
|
420
420
|
removeEventListener: _e,
|
|
421
421
|
keyboardEventKeys: ze,
|
|
422
|
-
keydownEvent:
|
|
423
|
-
keypressEvent:
|
|
424
|
-
keyupEvent:
|
|
422
|
+
keydownEvent: st,
|
|
423
|
+
keypressEvent: ct,
|
|
424
|
+
keyupEvent: rt,
|
|
425
425
|
keyAlt: xe,
|
|
426
426
|
keyArrowDown: Ve,
|
|
427
427
|
keyArrowLeft: He,
|
|
@@ -432,10 +432,10 @@ const b = /* @__PURE__ */ new Map(), ce = (t, e) => {
|
|
|
432
432
|
keyControl: We,
|
|
433
433
|
keyDelete: Re,
|
|
434
434
|
keyEnter: Qe,
|
|
435
|
-
keyEscape:
|
|
436
|
-
keyInsert:
|
|
437
|
-
keyMeta:
|
|
438
|
-
keyPause:
|
|
435
|
+
keyEscape: qe,
|
|
436
|
+
keyInsert: Ge,
|
|
437
|
+
keyMeta: Ye,
|
|
438
|
+
keyPause: je,
|
|
439
439
|
keyScrollLock: Je,
|
|
440
440
|
keyShift: Ke,
|
|
441
441
|
keySpace: Xe,
|
|
@@ -444,104 +444,105 @@ const b = /* @__PURE__ */ new Map(), ce = (t, e) => {
|
|
|
444
444
|
offsetWidth: nn,
|
|
445
445
|
scrollHeight: on,
|
|
446
446
|
scrollWidth: sn,
|
|
447
|
-
userAgentData:
|
|
448
|
-
userAgent:
|
|
447
|
+
userAgentData: A,
|
|
448
|
+
userAgent: S,
|
|
449
449
|
tabindex: cn,
|
|
450
450
|
addClass: Mn,
|
|
451
451
|
removeClass: Nn,
|
|
452
|
-
hasClass:
|
|
453
|
-
on:
|
|
454
|
-
off:
|
|
455
|
-
one:
|
|
456
|
-
documentBody:
|
|
452
|
+
hasClass: Tn,
|
|
453
|
+
on: qt,
|
|
454
|
+
off: Gt,
|
|
455
|
+
one: Yt,
|
|
456
|
+
documentBody: kn,
|
|
457
457
|
documentElement: Dn,
|
|
458
|
-
documentHead:
|
|
459
|
-
dispatchEvent:
|
|
458
|
+
documentHead: M,
|
|
459
|
+
dispatchEvent: U,
|
|
460
460
|
distinct: On,
|
|
461
|
-
Data:
|
|
461
|
+
Data: C,
|
|
462
462
|
getInstance: Ln,
|
|
463
|
-
createElement:
|
|
464
|
-
createElementNS:
|
|
465
|
-
createCustomEvent:
|
|
466
|
-
toUpperCase:
|
|
467
|
-
toLowerCase:
|
|
468
|
-
Timer:
|
|
463
|
+
createElement: Kt,
|
|
464
|
+
createElementNS: Xt,
|
|
465
|
+
createCustomEvent: Wn,
|
|
466
|
+
toUpperCase: Yn,
|
|
467
|
+
toLowerCase: ee,
|
|
468
|
+
Timer: Gn,
|
|
469
469
|
emulateAnimationEnd: In,
|
|
470
470
|
emulateTransitionEnd: zn,
|
|
471
|
-
isElementInScrollRange:
|
|
472
|
-
isElementInViewport:
|
|
473
|
-
passiveHandler:
|
|
474
|
-
getElementAnimationDuration:
|
|
475
|
-
getElementAnimationDelay:
|
|
476
|
-
getElementTransitionDuration:
|
|
477
|
-
getElementTransitionDelay:
|
|
478
|
-
getNodeScroll:
|
|
479
|
-
getParentNode:
|
|
480
|
-
getRectRelativeToOffsetParent:
|
|
481
|
-
getWindow:
|
|
471
|
+
isElementInScrollRange: eo,
|
|
472
|
+
isElementInViewport: no,
|
|
473
|
+
passiveHandler: Rn,
|
|
474
|
+
getElementAnimationDuration: $t,
|
|
475
|
+
getElementAnimationDelay: Zt,
|
|
476
|
+
getElementTransitionDuration: te,
|
|
477
|
+
getElementTransitionDelay: _t,
|
|
478
|
+
getNodeScroll: Kn,
|
|
479
|
+
getParentNode: Xn,
|
|
480
|
+
getRectRelativeToOffsetParent: Zn,
|
|
481
|
+
getWindow: $n,
|
|
482
482
|
isArray: re,
|
|
483
|
-
isCanvas:
|
|
483
|
+
isCanvas: _n,
|
|
484
484
|
isString: p,
|
|
485
485
|
isCustomElement: ie,
|
|
486
|
-
isElement:
|
|
487
|
-
isJSON:
|
|
488
|
-
isMap:
|
|
489
|
-
isWeakMap:
|
|
490
|
-
isNode:
|
|
486
|
+
isElement: to,
|
|
487
|
+
isJSON: io,
|
|
488
|
+
isMap: L,
|
|
489
|
+
isWeakMap: ao,
|
|
490
|
+
isNode: a,
|
|
491
491
|
isNumber: ne,
|
|
492
492
|
isHTMLElement: u,
|
|
493
|
-
isHTMLImageElement:
|
|
494
|
-
isSVGElement:
|
|
495
|
-
isNodeList:
|
|
496
|
-
isHTMLCollection:
|
|
493
|
+
isHTMLImageElement: ro,
|
|
494
|
+
isSVGElement: fo,
|
|
495
|
+
isNodeList: lo,
|
|
496
|
+
isHTMLCollection: co,
|
|
497
497
|
isScaledElement: se,
|
|
498
|
-
isTableElement:
|
|
498
|
+
isTableElement: mo,
|
|
499
499
|
isShadowRoot: oe,
|
|
500
|
-
isDocument:
|
|
501
|
-
isElementsArray:
|
|
502
|
-
isFunction:
|
|
503
|
-
isObject:
|
|
504
|
-
isWindow:
|
|
505
|
-
isMedia:
|
|
506
|
-
isRTL:
|
|
500
|
+
isDocument: P,
|
|
501
|
+
isElementsArray: oo,
|
|
502
|
+
isFunction: so,
|
|
503
|
+
isObject: m,
|
|
504
|
+
isWindow: H,
|
|
505
|
+
isMedia: uo,
|
|
506
|
+
isRTL: po,
|
|
507
507
|
closest: ae,
|
|
508
|
-
querySelector:
|
|
509
|
-
getCustomElements:
|
|
510
|
-
getElementById:
|
|
511
|
-
querySelectorAll:
|
|
512
|
-
getElementsByClassName:
|
|
508
|
+
querySelector: go,
|
|
509
|
+
getCustomElements: Eo,
|
|
510
|
+
getElementById: vo,
|
|
511
|
+
querySelectorAll: bo,
|
|
512
|
+
getElementsByClassName: ho,
|
|
513
513
|
getElementsByTagName: ue,
|
|
514
|
-
matches:
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
514
|
+
matches: yo,
|
|
515
|
+
hasOwn: Hn,
|
|
516
|
+
normalizeValue: I,
|
|
517
|
+
normalizeOptions: Pn,
|
|
518
|
+
reflow: Qn,
|
|
519
|
+
noop: jt,
|
|
519
520
|
focus: Bn,
|
|
520
521
|
getUID: ce,
|
|
521
522
|
ArrayFrom: Cn,
|
|
522
523
|
Float32ArrayFrom: xn,
|
|
523
524
|
Float64ArrayFrom: Vn,
|
|
524
|
-
ObjectAssign:
|
|
525
|
-
ObjectEntries:
|
|
526
|
-
ObjectKeys:
|
|
527
|
-
ObjectValues:
|
|
528
|
-
getBoundingClientRect:
|
|
525
|
+
ObjectAssign: F,
|
|
526
|
+
ObjectEntries: b,
|
|
527
|
+
ObjectKeys: Un,
|
|
528
|
+
ObjectValues: Fn,
|
|
529
|
+
getBoundingClientRect: y,
|
|
529
530
|
getDocument: d,
|
|
530
|
-
getDocumentBody:
|
|
531
|
-
getDocumentElement:
|
|
532
|
-
getDocumentHead:
|
|
531
|
+
getDocumentBody: jn,
|
|
532
|
+
getDocumentElement: N,
|
|
533
|
+
getDocumentHead: Jn,
|
|
533
534
|
getElementStyle: f,
|
|
534
|
-
setElementStyle:
|
|
535
|
+
setElementStyle: qn,
|
|
535
536
|
hasAttribute: hn,
|
|
536
537
|
hasAttributeNS: yn,
|
|
537
|
-
getAttribute:
|
|
538
|
+
getAttribute: Jt,
|
|
538
539
|
getAttributeNS: bn,
|
|
539
|
-
setAttribute:
|
|
540
|
+
setAttribute: B,
|
|
540
541
|
setAttributeNS: wn,
|
|
541
542
|
removeAttribute: An,
|
|
542
543
|
removeAttributeNS: Sn
|
|
543
544
|
};
|
|
544
545
|
export {
|
|
545
|
-
|
|
546
|
+
wo as default
|
|
546
547
|
};
|
|
547
548
|
//# sourceMappingURL=shorty.mjs.map
|