@sanity/cli 3.36.4 → 3.36.5-canary.34
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/lib/_chunks-cjs/cli.js +1779 -1317
- package/lib/_chunks-cjs/cli.js.map +1 -1
- package/lib/_chunks-cjs/journeyConfig.js +11 -11
- package/lib/_chunks-cjs/journeyConfig.js.map +1 -1
- package/lib/_chunks-cjs/loadEnv.js +105 -2719
- package/lib/_chunks-cjs/loadEnv.js.map +1 -1
- package/lib/cli.d.ts +10 -0
- package/lib/index.d.ts +448 -0
- package/lib/index.esm.js +449 -5
- package/lib/index.esm.js.map +1 -1
- package/lib/index.js +3 -3
- package/lib/index.js.map +1 -1
- package/lib/index.mjs +452 -0
- package/lib/index.mjs.map +1 -0
- package/lib/run.d.ts +1 -0
- package/lib/workers/getAndWriteJourneySchema.d.ts +1 -0
- package/lib/workers/getCliConfig.d.ts +1 -0
- package/lib/workers/typegenGenerate.d.ts +37 -0
- package/lib/workers/typegenGenerate.js +6 -2
- package/lib/workers/typegenGenerate.js.map +1 -1
- package/package.json +18 -21
- package/src/actions/init-project/templates/shopify.ts +7 -0
- package/src/util/journeyConfig.ts +5 -5
- package/templates/ecommerce/plugins/barcode-input/BarcodeInput.js +1 -1
- package/templates/get-started/plugins/sanity-plugin-tutorial/GetStartedTutorial.tsx +1 -1
- package/templates/shared/tsconfig.json +2 -4
- package/templates/shopify/README.md +3 -3
- package/templates/shopify/components/hotspots/ProductTooltip.tsx +1 -1
- package/templates/shopify/components/icons/Shopify.tsx +1 -1
- package/templates/shopify/components/inputs/CollectionHidden.tsx +1 -1
- package/templates/shopify/components/media/ColorTheme.tsx +1 -1
- package/templates/shopify/components/studio/Navbar.tsx +29 -0
- package/templates/shopify/constants.ts +31 -1
- package/templates/shopify/docs/features.md +6 -7
- package/templates/shopify/schemaTypes/documents/collection.tsx +11 -47
- package/templates/shopify/schemaTypes/documents/colorTheme.tsx +2 -17
- package/templates/shopify/schemaTypes/documents/page.ts +10 -37
- package/templates/shopify/schemaTypes/documents/product.tsx +4 -27
- package/templates/shopify/schemaTypes/documents/productVariant.tsx +4 -13
- package/templates/shopify/schemaTypes/index.ts +97 -126
- package/templates/shopify/schemaTypes/objects/collection/{group.ts → collectionGroupType.ts} +7 -10
- package/templates/shopify/schemaTypes/objects/collection/{links.ts → collectionLinksType.ts} +4 -4
- package/templates/shopify/schemaTypes/objects/customProductOption/{colorObject.tsx → customProductOptionColorObjectType.tsx} +3 -6
- package/templates/shopify/schemaTypes/objects/customProductOption/{color.tsx → customProductOptionColorType.tsx} +2 -10
- package/templates/shopify/schemaTypes/objects/customProductOption/{sizeObject.ts → customProductOptionSizeObjectType.ts} +3 -7
- package/templates/shopify/schemaTypes/objects/customProductOption/{size.ts → customProductOptionSizeType.ts} +3 -12
- package/templates/shopify/schemaTypes/objects/global/footerType.ts +22 -0
- package/templates/shopify/schemaTypes/objects/global/menuLinksType.ts +21 -0
- package/templates/shopify/schemaTypes/objects/global/{menu.ts → menuType.ts} +2 -4
- package/templates/shopify/schemaTypes/objects/global/{notFoundPage.ts → notFoundPageType.ts} +1 -6
- package/templates/shopify/schemaTypes/objects/hotspot/{imageWithProductHotspots.ts → imageWithProductHotspotsType.ts} +4 -6
- package/templates/shopify/schemaTypes/objects/hotspot/{productHotspots.tsx → productHotspotsType.tsx} +3 -5
- package/templates/shopify/schemaTypes/objects/hotspot/{spot.tsx → spotType.tsx} +1 -3
- package/templates/shopify/schemaTypes/{annotations/linkEmail.tsx → objects/link/linkEmailType.tsx} +5 -13
- package/templates/shopify/schemaTypes/{annotations/linkExternal.tsx → objects/link/linkExternalType.tsx} +6 -13
- package/templates/shopify/schemaTypes/{annotations/linkInternal.tsx → objects/link/linkInternalType.tsx} +5 -12
- package/templates/shopify/schemaTypes/{annotations/product.tsx → objects/link/linkProductType.tsx} +4 -16
- package/templates/shopify/schemaTypes/objects/module/{accordionGroup.ts → accordionGroupType.ts} +6 -9
- package/templates/shopify/schemaTypes/objects/module/{accordion.ts → accordionType.ts} +4 -11
- package/templates/shopify/schemaTypes/objects/module/{callToAction.tsx → callToActionType.tsx} +10 -23
- package/templates/shopify/schemaTypes/objects/module/{callout.ts → calloutType.ts} +4 -10
- package/templates/shopify/schemaTypes/objects/module/{collection.tsx → collectionReferenceType.tsx} +4 -9
- package/templates/shopify/schemaTypes/objects/module/gridItemType.ts +41 -0
- package/templates/shopify/schemaTypes/objects/module/{grid.ts → gridType.ts} +7 -15
- package/templates/shopify/schemaTypes/objects/{hero/home.tsx → module/heroType.tsx} +14 -17
- package/templates/shopify/schemaTypes/objects/module/{imageCallToAction.tsx → imageCallToActionType.tsx} +6 -10
- package/templates/shopify/schemaTypes/objects/module/{image.ts → imageFeatureType.ts} +6 -18
- package/templates/shopify/schemaTypes/objects/module/{images.tsx → imageFeaturesType.tsx} +7 -25
- package/templates/shopify/schemaTypes/objects/module/{instagram.ts → instagramType.ts} +2 -2
- package/templates/shopify/schemaTypes/objects/module/{products.tsx → productFeaturesType.tsx} +6 -11
- package/templates/shopify/schemaTypes/objects/module/{product.tsx → productReferenceType.tsx} +6 -8
- package/templates/shopify/schemaTypes/objects/{seo/seo.ts → seoType.ts} +7 -6
- package/templates/shopify/schemaTypes/objects/shopify/{shopifyCollectionRule.tsx → collectionRuleType.tsx} +2 -10
- package/templates/shopify/schemaTypes/objects/shopify/{inventory.ts → inventoryType.ts} +7 -12
- package/templates/shopify/schemaTypes/objects/shopify/{option.tsx → optionType.tsx} +6 -12
- package/templates/shopify/schemaTypes/objects/shopify/{placeholderString.ts → placeholderStringType.ts} +3 -1
- package/templates/shopify/schemaTypes/objects/shopify/{priceRange.ts → priceRangeType.ts} +5 -7
- package/templates/shopify/schemaTypes/objects/shopify/{productWithVariant.tsx → productWithVariantType.tsx} +2 -2
- package/templates/shopify/schemaTypes/objects/shopify/{proxyString.ts → proxyStringType.ts} +1 -1
- package/templates/shopify/schemaTypes/objects/shopify/{shopifyCollection.ts → shopifyCollectionType.ts} +4 -25
- package/templates/shopify/schemaTypes/objects/shopify/{shopifyProduct.ts → shopifyProductType.ts} +5 -35
- package/templates/shopify/schemaTypes/objects/shopify/{shopifyProductVariant.ts → shopifyProductVariantType.ts} +1 -27
- package/templates/shopify/schemaTypes/portableText/portableTextSimpleType.tsx +45 -0
- package/templates/shopify/schemaTypes/portableText/portableTextType.tsx +52 -0
- package/templates/shopify/schemaTypes/singletons/homeType.ts +49 -0
- package/templates/shopify/schemaTypes/singletons/{settings.ts → settingsType.ts} +7 -9
- package/templates/shopify/utils/shopifyUrls.ts +3 -3
- package/templates/shopify/utils/validateSlug.ts +3 -7
- package/lib/_chunks-cjs/index.js +0 -547
- package/lib/_chunks-cjs/index.js.map +0 -1
- package/lib/_chunks-cjs/node.js +0 -213
- package/lib/_chunks-cjs/node.js.map +0 -1
- package/lib/_chunks-cjs/stegaEncodeSourceMap.js +0 -357
- package/lib/_chunks-cjs/stegaEncodeSourceMap.js.map +0 -1
- package/lib/_chunks-es/index.js +0 -3336
- package/lib/_chunks-es/index.js.map +0 -1
- package/lib/_chunks-es/node.js +0 -216
- package/lib/_chunks-es/node.js.map +0 -1
- package/lib/_chunks-es/stegaEncodeSourceMap.js +0 -358
- package/lib/_chunks-es/stegaEncodeSourceMap.js.map +0 -1
- package/lib/index.cjs.mjs +0 -7
- package/templates/shopify/schemaTypes/blocks/body.tsx +0 -70
- package/templates/shopify/schemaTypes/objects/global/footer.ts +0 -57
- package/templates/shopify/schemaTypes/objects/global/linkExternal.ts +0 -52
- package/templates/shopify/schemaTypes/objects/global/linkInternal.ts +0 -65
- package/templates/shopify/schemaTypes/objects/global/links.ts +0 -16
- package/templates/shopify/schemaTypes/objects/hero/collection.tsx +0 -42
- package/templates/shopify/schemaTypes/objects/hero/page.tsx +0 -35
- package/templates/shopify/schemaTypes/objects/module/accordionBody.ts +0 -45
- package/templates/shopify/schemaTypes/objects/module/gridItem.ts +0 -91
- package/templates/shopify/schemaTypes/objects/seo/description.tsx +0 -10
- package/templates/shopify/schemaTypes/objects/seo/home.tsx +0 -31
- package/templates/shopify/schemaTypes/objects/seo/page.tsx +0 -37
- package/templates/shopify/schemaTypes/objects/seo/shopify.tsx +0 -40
- package/templates/shopify/schemaTypes/singletons/home.ts +0 -62
- /package/lib/{dts/src/index.d.ts → index.d.mts} +0 -0
package/lib/_chunks-cjs/index.js
DELETED
@@ -1,547 +0,0 @@
|
|
1
|
-
"use strict";
|
2
|
-
var tty = require("tty"), require$$0$1 = require("util"), require$$0 = require("os");
|
3
|
-
function _interopDefaultCompat(e) {
|
4
|
-
return e && typeof e == "object" && "default" in e ? e : { default: e };
|
5
|
-
}
|
6
|
-
var tty__default = /* @__PURE__ */ _interopDefaultCompat(tty), require$$0__default$1 = /* @__PURE__ */ _interopDefaultCompat(require$$0$1), require$$0__default = /* @__PURE__ */ _interopDefaultCompat(require$$0), commonjsGlobal = typeof globalThis < "u" ? globalThis : typeof window < "u" ? window : typeof global < "u" ? global : typeof self < "u" ? self : {};
|
7
|
-
function getDefaultExportFromCjs(x) {
|
8
|
-
return x && x.__esModule && Object.prototype.hasOwnProperty.call(x, "default") ? x.default : x;
|
9
|
-
}
|
10
|
-
function getAugmentedNamespace(n) {
|
11
|
-
if (n.__esModule)
|
12
|
-
return n;
|
13
|
-
var f = n.default;
|
14
|
-
if (typeof f == "function") {
|
15
|
-
var a = function a2() {
|
16
|
-
return this instanceof a2 ? Reflect.construct(f, arguments, this.constructor) : f.apply(this, arguments);
|
17
|
-
};
|
18
|
-
a.prototype = f.prototype;
|
19
|
-
} else
|
20
|
-
a = {};
|
21
|
-
return Object.defineProperty(a, "__esModule", { value: !0 }), Object.keys(n).forEach(function(k) {
|
22
|
-
var d = Object.getOwnPropertyDescriptor(n, k);
|
23
|
-
Object.defineProperty(a, k, d.get ? d : {
|
24
|
-
enumerable: !0,
|
25
|
-
get: function() {
|
26
|
-
return n[k];
|
27
|
-
}
|
28
|
-
});
|
29
|
-
}), a;
|
30
|
-
}
|
31
|
-
var src = { exports: {} }, browser = { exports: {} }, ms, hasRequiredMs;
|
32
|
-
function requireMs() {
|
33
|
-
if (hasRequiredMs)
|
34
|
-
return ms;
|
35
|
-
hasRequiredMs = 1;
|
36
|
-
var s = 1e3, m = s * 60, h = m * 60, d = h * 24, w = d * 7, y = d * 365.25;
|
37
|
-
ms = function(val, options) {
|
38
|
-
options = options || {};
|
39
|
-
var type = typeof val;
|
40
|
-
if (type === "string" && val.length > 0)
|
41
|
-
return parse(val);
|
42
|
-
if (type === "number" && isFinite(val))
|
43
|
-
return options.long ? fmtLong(val) : fmtShort(val);
|
44
|
-
throw new Error(
|
45
|
-
"val is not a non-empty string or a valid number. val=" + JSON.stringify(val)
|
46
|
-
);
|
47
|
-
};
|
48
|
-
function parse(str) {
|
49
|
-
if (str = String(str), !(str.length > 100)) {
|
50
|
-
var match = /^(-?(?:\d+)?\.?\d+) *(milliseconds?|msecs?|ms|seconds?|secs?|s|minutes?|mins?|m|hours?|hrs?|h|days?|d|weeks?|w|years?|yrs?|y)?$/i.exec(
|
51
|
-
str
|
52
|
-
);
|
53
|
-
if (match) {
|
54
|
-
var n = parseFloat(match[1]), type = (match[2] || "ms").toLowerCase();
|
55
|
-
switch (type) {
|
56
|
-
case "years":
|
57
|
-
case "year":
|
58
|
-
case "yrs":
|
59
|
-
case "yr":
|
60
|
-
case "y":
|
61
|
-
return n * y;
|
62
|
-
case "weeks":
|
63
|
-
case "week":
|
64
|
-
case "w":
|
65
|
-
return n * w;
|
66
|
-
case "days":
|
67
|
-
case "day":
|
68
|
-
case "d":
|
69
|
-
return n * d;
|
70
|
-
case "hours":
|
71
|
-
case "hour":
|
72
|
-
case "hrs":
|
73
|
-
case "hr":
|
74
|
-
case "h":
|
75
|
-
return n * h;
|
76
|
-
case "minutes":
|
77
|
-
case "minute":
|
78
|
-
case "mins":
|
79
|
-
case "min":
|
80
|
-
case "m":
|
81
|
-
return n * m;
|
82
|
-
case "seconds":
|
83
|
-
case "second":
|
84
|
-
case "secs":
|
85
|
-
case "sec":
|
86
|
-
case "s":
|
87
|
-
return n * s;
|
88
|
-
case "milliseconds":
|
89
|
-
case "millisecond":
|
90
|
-
case "msecs":
|
91
|
-
case "msec":
|
92
|
-
case "ms":
|
93
|
-
return n;
|
94
|
-
default:
|
95
|
-
return;
|
96
|
-
}
|
97
|
-
}
|
98
|
-
}
|
99
|
-
}
|
100
|
-
function fmtShort(ms2) {
|
101
|
-
var msAbs = Math.abs(ms2);
|
102
|
-
return msAbs >= d ? Math.round(ms2 / d) + "d" : msAbs >= h ? Math.round(ms2 / h) + "h" : msAbs >= m ? Math.round(ms2 / m) + "m" : msAbs >= s ? Math.round(ms2 / s) + "s" : ms2 + "ms";
|
103
|
-
}
|
104
|
-
function fmtLong(ms2) {
|
105
|
-
var msAbs = Math.abs(ms2);
|
106
|
-
return msAbs >= d ? plural(ms2, msAbs, d, "day") : msAbs >= h ? plural(ms2, msAbs, h, "hour") : msAbs >= m ? plural(ms2, msAbs, m, "minute") : msAbs >= s ? plural(ms2, msAbs, s, "second") : ms2 + " ms";
|
107
|
-
}
|
108
|
-
function plural(ms2, msAbs, n, name) {
|
109
|
-
var isPlural = msAbs >= n * 1.5;
|
110
|
-
return Math.round(ms2 / n) + " " + name + (isPlural ? "s" : "");
|
111
|
-
}
|
112
|
-
return ms;
|
113
|
-
}
|
114
|
-
var common, hasRequiredCommon;
|
115
|
-
function requireCommon() {
|
116
|
-
if (hasRequiredCommon)
|
117
|
-
return common;
|
118
|
-
hasRequiredCommon = 1;
|
119
|
-
function setup(env) {
|
120
|
-
createDebug2.debug = createDebug2, createDebug2.default = createDebug2, createDebug2.coerce = coerce, createDebug2.disable = disable, createDebug2.enable = enable, createDebug2.enabled = enabled, createDebug2.humanize = requireMs(), createDebug2.destroy = destroy, Object.keys(env).forEach((key) => {
|
121
|
-
createDebug2[key] = env[key];
|
122
|
-
}), createDebug2.names = [], createDebug2.skips = [], createDebug2.formatters = {};
|
123
|
-
function selectColor(namespace) {
|
124
|
-
let hash = 0;
|
125
|
-
for (let i = 0; i < namespace.length; i++)
|
126
|
-
hash = (hash << 5) - hash + namespace.charCodeAt(i), hash |= 0;
|
127
|
-
return createDebug2.colors[Math.abs(hash) % createDebug2.colors.length];
|
128
|
-
}
|
129
|
-
createDebug2.selectColor = selectColor;
|
130
|
-
function createDebug2(namespace) {
|
131
|
-
let prevTime, enableOverride = null, namespacesCache, enabledCache;
|
132
|
-
function debug(...args) {
|
133
|
-
if (!debug.enabled)
|
134
|
-
return;
|
135
|
-
const self2 = debug, curr = Number(/* @__PURE__ */ new Date()), ms2 = curr - (prevTime || curr);
|
136
|
-
self2.diff = ms2, self2.prev = prevTime, self2.curr = curr, prevTime = curr, args[0] = createDebug2.coerce(args[0]), typeof args[0] != "string" && args.unshift("%O");
|
137
|
-
let index = 0;
|
138
|
-
args[0] = args[0].replace(/%([a-zA-Z%])/g, (match, format) => {
|
139
|
-
if (match === "%%")
|
140
|
-
return "%";
|
141
|
-
index++;
|
142
|
-
const formatter = createDebug2.formatters[format];
|
143
|
-
if (typeof formatter == "function") {
|
144
|
-
const val = args[index];
|
145
|
-
match = formatter.call(self2, val), args.splice(index, 1), index--;
|
146
|
-
}
|
147
|
-
return match;
|
148
|
-
}), createDebug2.formatArgs.call(self2, args), (self2.log || createDebug2.log).apply(self2, args);
|
149
|
-
}
|
150
|
-
return debug.namespace = namespace, debug.useColors = createDebug2.useColors(), debug.color = createDebug2.selectColor(namespace), debug.extend = extend, debug.destroy = createDebug2.destroy, Object.defineProperty(debug, "enabled", {
|
151
|
-
enumerable: !0,
|
152
|
-
configurable: !1,
|
153
|
-
get: () => enableOverride !== null ? enableOverride : (namespacesCache !== createDebug2.namespaces && (namespacesCache = createDebug2.namespaces, enabledCache = createDebug2.enabled(namespace)), enabledCache),
|
154
|
-
set: (v) => {
|
155
|
-
enableOverride = v;
|
156
|
-
}
|
157
|
-
}), typeof createDebug2.init == "function" && createDebug2.init(debug), debug;
|
158
|
-
}
|
159
|
-
function extend(namespace, delimiter) {
|
160
|
-
const newDebug = createDebug2(this.namespace + (typeof delimiter > "u" ? ":" : delimiter) + namespace);
|
161
|
-
return newDebug.log = this.log, newDebug;
|
162
|
-
}
|
163
|
-
function enable(namespaces) {
|
164
|
-
createDebug2.save(namespaces), createDebug2.namespaces = namespaces, createDebug2.names = [], createDebug2.skips = [];
|
165
|
-
let i;
|
166
|
-
const split = (typeof namespaces == "string" ? namespaces : "").split(/[\s,]+/), len = split.length;
|
167
|
-
for (i = 0; i < len; i++)
|
168
|
-
split[i] && (namespaces = split[i].replace(/\*/g, ".*?"), namespaces[0] === "-" ? createDebug2.skips.push(new RegExp("^" + namespaces.slice(1) + "$")) : createDebug2.names.push(new RegExp("^" + namespaces + "$")));
|
169
|
-
}
|
170
|
-
function disable() {
|
171
|
-
const namespaces = [
|
172
|
-
...createDebug2.names.map(toNamespace),
|
173
|
-
...createDebug2.skips.map(toNamespace).map((namespace) => "-" + namespace)
|
174
|
-
].join(",");
|
175
|
-
return createDebug2.enable(""), namespaces;
|
176
|
-
}
|
177
|
-
function enabled(name) {
|
178
|
-
if (name[name.length - 1] === "*")
|
179
|
-
return !0;
|
180
|
-
let i, len;
|
181
|
-
for (i = 0, len = createDebug2.skips.length; i < len; i++)
|
182
|
-
if (createDebug2.skips[i].test(name))
|
183
|
-
return !1;
|
184
|
-
for (i = 0, len = createDebug2.names.length; i < len; i++)
|
185
|
-
if (createDebug2.names[i].test(name))
|
186
|
-
return !0;
|
187
|
-
return !1;
|
188
|
-
}
|
189
|
-
function toNamespace(regexp) {
|
190
|
-
return regexp.toString().substring(2, regexp.toString().length - 2).replace(/\.\*\?$/, "*");
|
191
|
-
}
|
192
|
-
function coerce(val) {
|
193
|
-
return val instanceof Error ? val.stack || val.message : val;
|
194
|
-
}
|
195
|
-
function destroy() {
|
196
|
-
console.warn("Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`.");
|
197
|
-
}
|
198
|
-
return createDebug2.enable(createDebug2.load()), createDebug2;
|
199
|
-
}
|
200
|
-
return common = setup, common;
|
201
|
-
}
|
202
|
-
var hasRequiredBrowser;
|
203
|
-
function requireBrowser() {
|
204
|
-
return hasRequiredBrowser || (hasRequiredBrowser = 1, function(module2, exports2) {
|
205
|
-
exports2.formatArgs = formatArgs, exports2.save = save, exports2.load = load, exports2.useColors = useColors, exports2.storage = localstorage(), exports2.destroy = /* @__PURE__ */ (() => {
|
206
|
-
let warned = !1;
|
207
|
-
return () => {
|
208
|
-
warned || (warned = !0, console.warn("Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`."));
|
209
|
-
};
|
210
|
-
})(), exports2.colors = [
|
211
|
-
"#0000CC",
|
212
|
-
"#0000FF",
|
213
|
-
"#0033CC",
|
214
|
-
"#0033FF",
|
215
|
-
"#0066CC",
|
216
|
-
"#0066FF",
|
217
|
-
"#0099CC",
|
218
|
-
"#0099FF",
|
219
|
-
"#00CC00",
|
220
|
-
"#00CC33",
|
221
|
-
"#00CC66",
|
222
|
-
"#00CC99",
|
223
|
-
"#00CCCC",
|
224
|
-
"#00CCFF",
|
225
|
-
"#3300CC",
|
226
|
-
"#3300FF",
|
227
|
-
"#3333CC",
|
228
|
-
"#3333FF",
|
229
|
-
"#3366CC",
|
230
|
-
"#3366FF",
|
231
|
-
"#3399CC",
|
232
|
-
"#3399FF",
|
233
|
-
"#33CC00",
|
234
|
-
"#33CC33",
|
235
|
-
"#33CC66",
|
236
|
-
"#33CC99",
|
237
|
-
"#33CCCC",
|
238
|
-
"#33CCFF",
|
239
|
-
"#6600CC",
|
240
|
-
"#6600FF",
|
241
|
-
"#6633CC",
|
242
|
-
"#6633FF",
|
243
|
-
"#66CC00",
|
244
|
-
"#66CC33",
|
245
|
-
"#9900CC",
|
246
|
-
"#9900FF",
|
247
|
-
"#9933CC",
|
248
|
-
"#9933FF",
|
249
|
-
"#99CC00",
|
250
|
-
"#99CC33",
|
251
|
-
"#CC0000",
|
252
|
-
"#CC0033",
|
253
|
-
"#CC0066",
|
254
|
-
"#CC0099",
|
255
|
-
"#CC00CC",
|
256
|
-
"#CC00FF",
|
257
|
-
"#CC3300",
|
258
|
-
"#CC3333",
|
259
|
-
"#CC3366",
|
260
|
-
"#CC3399",
|
261
|
-
"#CC33CC",
|
262
|
-
"#CC33FF",
|
263
|
-
"#CC6600",
|
264
|
-
"#CC6633",
|
265
|
-
"#CC9900",
|
266
|
-
"#CC9933",
|
267
|
-
"#CCCC00",
|
268
|
-
"#CCCC33",
|
269
|
-
"#FF0000",
|
270
|
-
"#FF0033",
|
271
|
-
"#FF0066",
|
272
|
-
"#FF0099",
|
273
|
-
"#FF00CC",
|
274
|
-
"#FF00FF",
|
275
|
-
"#FF3300",
|
276
|
-
"#FF3333",
|
277
|
-
"#FF3366",
|
278
|
-
"#FF3399",
|
279
|
-
"#FF33CC",
|
280
|
-
"#FF33FF",
|
281
|
-
"#FF6600",
|
282
|
-
"#FF6633",
|
283
|
-
"#FF9900",
|
284
|
-
"#FF9933",
|
285
|
-
"#FFCC00",
|
286
|
-
"#FFCC33"
|
287
|
-
];
|
288
|
-
function useColors() {
|
289
|
-
return typeof window < "u" && window.process && (window.process.type === "renderer" || window.process.__nwjs) ? !0 : typeof navigator < "u" && navigator.userAgent && navigator.userAgent.toLowerCase().match(/(edge|trident)\/(\d+)/) ? !1 : typeof document < "u" && document.documentElement && document.documentElement.style && document.documentElement.style.WebkitAppearance || // Is firebug? http://stackoverflow.com/a/398120/376773
|
290
|
-
typeof window < "u" && window.console && (window.console.firebug || window.console.exception && window.console.table) || // Is firefox >= v31?
|
291
|
-
// https://developer.mozilla.org/en-US/docs/Tools/Web_Console#Styling_messages
|
292
|
-
typeof navigator < "u" && navigator.userAgent && navigator.userAgent.toLowerCase().match(/firefox\/(\d+)/) && parseInt(RegExp.$1, 10) >= 31 || // Double check webkit in userAgent just in case we are in a worker
|
293
|
-
typeof navigator < "u" && navigator.userAgent && navigator.userAgent.toLowerCase().match(/applewebkit\/(\d+)/);
|
294
|
-
}
|
295
|
-
function formatArgs(args) {
|
296
|
-
if (args[0] = (this.useColors ? "%c" : "") + this.namespace + (this.useColors ? " %c" : " ") + args[0] + (this.useColors ? "%c " : " ") + "+" + module2.exports.humanize(this.diff), !this.useColors)
|
297
|
-
return;
|
298
|
-
const c = "color: " + this.color;
|
299
|
-
args.splice(1, 0, c, "color: inherit");
|
300
|
-
let index = 0, lastC = 0;
|
301
|
-
args[0].replace(/%[a-zA-Z%]/g, (match) => {
|
302
|
-
match !== "%%" && (index++, match === "%c" && (lastC = index));
|
303
|
-
}), args.splice(lastC, 0, c);
|
304
|
-
}
|
305
|
-
exports2.log = console.debug || console.log || (() => {
|
306
|
-
});
|
307
|
-
function save(namespaces) {
|
308
|
-
try {
|
309
|
-
namespaces ? exports2.storage.setItem("debug", namespaces) : exports2.storage.removeItem("debug");
|
310
|
-
} catch {
|
311
|
-
}
|
312
|
-
}
|
313
|
-
function load() {
|
314
|
-
let r;
|
315
|
-
try {
|
316
|
-
r = exports2.storage.getItem("debug");
|
317
|
-
} catch {
|
318
|
-
}
|
319
|
-
return !r && typeof process < "u" && "env" in process && (r = process.env.DEBUG), r;
|
320
|
-
}
|
321
|
-
function localstorage() {
|
322
|
-
try {
|
323
|
-
return localStorage;
|
324
|
-
} catch {
|
325
|
-
}
|
326
|
-
}
|
327
|
-
module2.exports = requireCommon()(exports2);
|
328
|
-
const { formatters } = module2.exports;
|
329
|
-
formatters.j = function(v) {
|
330
|
-
try {
|
331
|
-
return JSON.stringify(v);
|
332
|
-
} catch (error) {
|
333
|
-
return "[UnexpectedJSONParseError]: " + error.message;
|
334
|
-
}
|
335
|
-
};
|
336
|
-
}(browser, browser.exports)), browser.exports;
|
337
|
-
}
|
338
|
-
var node = { exports: {} }, hasFlag, hasRequiredHasFlag;
|
339
|
-
function requireHasFlag() {
|
340
|
-
return hasRequiredHasFlag || (hasRequiredHasFlag = 1, hasFlag = (flag, argv) => {
|
341
|
-
argv = argv || process.argv;
|
342
|
-
const prefix = flag.startsWith("-") ? "" : flag.length === 1 ? "-" : "--", pos = argv.indexOf(prefix + flag), terminatorPos = argv.indexOf("--");
|
343
|
-
return pos !== -1 && (terminatorPos === -1 ? !0 : pos < terminatorPos);
|
344
|
-
}), hasFlag;
|
345
|
-
}
|
346
|
-
var supportsColor_1, hasRequiredSupportsColor;
|
347
|
-
function requireSupportsColor() {
|
348
|
-
if (hasRequiredSupportsColor)
|
349
|
-
return supportsColor_1;
|
350
|
-
hasRequiredSupportsColor = 1;
|
351
|
-
const os = require$$0__default.default, hasFlag2 = requireHasFlag(), env = process.env;
|
352
|
-
let forceColor;
|
353
|
-
hasFlag2("no-color") || hasFlag2("no-colors") || hasFlag2("color=false") ? forceColor = !1 : (hasFlag2("color") || hasFlag2("colors") || hasFlag2("color=true") || hasFlag2("color=always")) && (forceColor = !0), "FORCE_COLOR" in env && (forceColor = env.FORCE_COLOR.length === 0 || parseInt(env.FORCE_COLOR, 10) !== 0);
|
354
|
-
function translateLevel(level) {
|
355
|
-
return level === 0 ? !1 : {
|
356
|
-
level,
|
357
|
-
hasBasic: !0,
|
358
|
-
has256: level >= 2,
|
359
|
-
has16m: level >= 3
|
360
|
-
};
|
361
|
-
}
|
362
|
-
function supportsColor(stream) {
|
363
|
-
if (forceColor === !1)
|
364
|
-
return 0;
|
365
|
-
if (hasFlag2("color=16m") || hasFlag2("color=full") || hasFlag2("color=truecolor"))
|
366
|
-
return 3;
|
367
|
-
if (hasFlag2("color=256"))
|
368
|
-
return 2;
|
369
|
-
if (stream && !stream.isTTY && forceColor !== !0)
|
370
|
-
return 0;
|
371
|
-
const min = forceColor ? 1 : 0;
|
372
|
-
if (process.platform === "win32") {
|
373
|
-
const osRelease = os.release().split(".");
|
374
|
-
return Number(process.versions.node.split(".")[0]) >= 8 && Number(osRelease[0]) >= 10 && Number(osRelease[2]) >= 10586 ? Number(osRelease[2]) >= 14931 ? 3 : 2 : 1;
|
375
|
-
}
|
376
|
-
if ("CI" in env)
|
377
|
-
return ["TRAVIS", "CIRCLECI", "APPVEYOR", "GITLAB_CI"].some((sign) => sign in env) || env.CI_NAME === "codeship" ? 1 : min;
|
378
|
-
if ("TEAMCITY_VERSION" in env)
|
379
|
-
return /^(9\.(0*[1-9]\d*)\.|\d{2,}\.)/.test(env.TEAMCITY_VERSION) ? 1 : 0;
|
380
|
-
if (env.COLORTERM === "truecolor")
|
381
|
-
return 3;
|
382
|
-
if ("TERM_PROGRAM" in env) {
|
383
|
-
const version = parseInt((env.TERM_PROGRAM_VERSION || "").split(".")[0], 10);
|
384
|
-
switch (env.TERM_PROGRAM) {
|
385
|
-
case "iTerm.app":
|
386
|
-
return version >= 3 ? 3 : 2;
|
387
|
-
case "Apple_Terminal":
|
388
|
-
return 2;
|
389
|
-
}
|
390
|
-
}
|
391
|
-
return /-256(color)?$/i.test(env.TERM) ? 2 : /^screen|^xterm|^vt100|^vt220|^rxvt|color|ansi|cygwin|linux/i.test(env.TERM) || "COLORTERM" in env ? 1 : (env.TERM === "dumb", min);
|
392
|
-
}
|
393
|
-
function getSupportLevel(stream) {
|
394
|
-
const level = supportsColor(stream);
|
395
|
-
return translateLevel(level);
|
396
|
-
}
|
397
|
-
return supportsColor_1 = {
|
398
|
-
supportsColor: getSupportLevel,
|
399
|
-
stdout: getSupportLevel(process.stdout),
|
400
|
-
stderr: getSupportLevel(process.stderr)
|
401
|
-
}, supportsColor_1;
|
402
|
-
}
|
403
|
-
var hasRequiredNode;
|
404
|
-
function requireNode() {
|
405
|
-
return hasRequiredNode || (hasRequiredNode = 1, function(module2, exports2) {
|
406
|
-
const tty2 = tty__default.default, util = require$$0__default$1.default;
|
407
|
-
exports2.init = init, exports2.log = log, exports2.formatArgs = formatArgs, exports2.save = save, exports2.load = load, exports2.useColors = useColors, exports2.destroy = util.deprecate(
|
408
|
-
() => {
|
409
|
-
},
|
410
|
-
"Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`."
|
411
|
-
), exports2.colors = [6, 2, 3, 4, 5, 1];
|
412
|
-
try {
|
413
|
-
const supportsColor = requireSupportsColor();
|
414
|
-
supportsColor && (supportsColor.stderr || supportsColor).level >= 2 && (exports2.colors = [
|
415
|
-
20,
|
416
|
-
21,
|
417
|
-
26,
|
418
|
-
27,
|
419
|
-
32,
|
420
|
-
33,
|
421
|
-
38,
|
422
|
-
39,
|
423
|
-
40,
|
424
|
-
41,
|
425
|
-
42,
|
426
|
-
43,
|
427
|
-
44,
|
428
|
-
45,
|
429
|
-
56,
|
430
|
-
57,
|
431
|
-
62,
|
432
|
-
63,
|
433
|
-
68,
|
434
|
-
69,
|
435
|
-
74,
|
436
|
-
75,
|
437
|
-
76,
|
438
|
-
77,
|
439
|
-
78,
|
440
|
-
79,
|
441
|
-
80,
|
442
|
-
81,
|
443
|
-
92,
|
444
|
-
93,
|
445
|
-
98,
|
446
|
-
99,
|
447
|
-
112,
|
448
|
-
113,
|
449
|
-
128,
|
450
|
-
129,
|
451
|
-
134,
|
452
|
-
135,
|
453
|
-
148,
|
454
|
-
149,
|
455
|
-
160,
|
456
|
-
161,
|
457
|
-
162,
|
458
|
-
163,
|
459
|
-
164,
|
460
|
-
165,
|
461
|
-
166,
|
462
|
-
167,
|
463
|
-
168,
|
464
|
-
169,
|
465
|
-
170,
|
466
|
-
171,
|
467
|
-
172,
|
468
|
-
173,
|
469
|
-
178,
|
470
|
-
179,
|
471
|
-
184,
|
472
|
-
185,
|
473
|
-
196,
|
474
|
-
197,
|
475
|
-
198,
|
476
|
-
199,
|
477
|
-
200,
|
478
|
-
201,
|
479
|
-
202,
|
480
|
-
203,
|
481
|
-
204,
|
482
|
-
205,
|
483
|
-
206,
|
484
|
-
207,
|
485
|
-
208,
|
486
|
-
209,
|
487
|
-
214,
|
488
|
-
215,
|
489
|
-
220,
|
490
|
-
221
|
491
|
-
]);
|
492
|
-
} catch {
|
493
|
-
}
|
494
|
-
exports2.inspectOpts = Object.keys(process.env).filter((key) => /^debug_/i.test(key)).reduce((obj, key) => {
|
495
|
-
const prop = key.substring(6).toLowerCase().replace(/_([a-z])/g, (_, k) => k.toUpperCase());
|
496
|
-
let val = process.env[key];
|
497
|
-
return /^(yes|on|true|enabled)$/i.test(val) ? val = !0 : /^(no|off|false|disabled)$/i.test(val) ? val = !1 : val === "null" ? val = null : val = Number(val), obj[prop] = val, obj;
|
498
|
-
}, {});
|
499
|
-
function useColors() {
|
500
|
-
return "colors" in exports2.inspectOpts ? !!exports2.inspectOpts.colors : tty2.isatty(process.stderr.fd);
|
501
|
-
}
|
502
|
-
function formatArgs(args) {
|
503
|
-
const { namespace: name, useColors: useColors2 } = this;
|
504
|
-
if (useColors2) {
|
505
|
-
const c = this.color, colorCode = "\x1B[3" + (c < 8 ? c : "8;5;" + c), prefix = ` ${colorCode};1m${name} \x1B[0m`;
|
506
|
-
args[0] = prefix + args[0].split(`
|
507
|
-
`).join(`
|
508
|
-
` + prefix), args.push(colorCode + "m+" + module2.exports.humanize(this.diff) + "\x1B[0m");
|
509
|
-
} else
|
510
|
-
args[0] = getDate() + name + " " + args[0];
|
511
|
-
}
|
512
|
-
function getDate() {
|
513
|
-
return exports2.inspectOpts.hideDate ? "" : (/* @__PURE__ */ new Date()).toISOString() + " ";
|
514
|
-
}
|
515
|
-
function log(...args) {
|
516
|
-
return process.stderr.write(util.format(...args) + `
|
517
|
-
`);
|
518
|
-
}
|
519
|
-
function save(namespaces) {
|
520
|
-
namespaces ? process.env.DEBUG = namespaces : delete process.env.DEBUG;
|
521
|
-
}
|
522
|
-
function load() {
|
523
|
-
return process.env.DEBUG;
|
524
|
-
}
|
525
|
-
function init(debug) {
|
526
|
-
debug.inspectOpts = {};
|
527
|
-
const keys = Object.keys(exports2.inspectOpts);
|
528
|
-
for (let i = 0; i < keys.length; i++)
|
529
|
-
debug.inspectOpts[keys[i]] = exports2.inspectOpts[keys[i]];
|
530
|
-
}
|
531
|
-
module2.exports = requireCommon()(exports2);
|
532
|
-
const { formatters } = module2.exports;
|
533
|
-
formatters.o = function(v) {
|
534
|
-
return this.inspectOpts.colors = this.useColors, util.inspect(v, this.inspectOpts).split(`
|
535
|
-
`).map((str) => str.trim()).join(" ");
|
536
|
-
}, formatters.O = function(v) {
|
537
|
-
return this.inspectOpts.colors = this.useColors, util.inspect(v, this.inspectOpts);
|
538
|
-
};
|
539
|
-
}(node, node.exports)), node.exports;
|
540
|
-
}
|
541
|
-
typeof process > "u" || process.type === "renderer" || process.browser === !0 || process.__nwjs ? src.exports = requireBrowser() : src.exports = requireNode();
|
542
|
-
var srcExports = src.exports, createDebug = /* @__PURE__ */ getDefaultExportFromCjs(srcExports);
|
543
|
-
exports.commonjsGlobal = commonjsGlobal;
|
544
|
-
exports.createDebug = createDebug;
|
545
|
-
exports.getAugmentedNamespace = getAugmentedNamespace;
|
546
|
-
exports.getDefaultExportFromCjs = getDefaultExportFromCjs;
|
547
|
-
//# sourceMappingURL=index.js.map
|
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"index.js","sources":["../../../../../node_modules/.pnpm/ms@2.1.2/node_modules/ms/index.js","../../../../../node_modules/.pnpm/debug@4.3.4_supports-color@5.5.0/node_modules/debug/src/common.js","../../../../../node_modules/.pnpm/debug@4.3.4_supports-color@5.5.0/node_modules/debug/src/browser.js","../../../../../node_modules/.pnpm/has-flag@3.0.0/node_modules/has-flag/index.js","../../../../../node_modules/.pnpm/supports-color@5.5.0/node_modules/supports-color/index.js","../../../../../node_modules/.pnpm/debug@4.3.4_supports-color@5.5.0/node_modules/debug/src/node.js","../../../../../node_modules/.pnpm/debug@4.3.4_supports-color@5.5.0/node_modules/debug/src/index.js"],"sourcesContent":["/**\n * Helpers.\n */\n\nvar s = 1000;\nvar m = s * 60;\nvar h = m * 60;\nvar d = h * 24;\nvar w = d * 7;\nvar y = d * 365.25;\n\n/**\n * Parse or format the given `val`.\n *\n * Options:\n *\n * - `long` verbose formatting [false]\n *\n * @param {String|Number} val\n * @param {Object} [options]\n * @throws {Error} throw an error if val is not a non-empty string or a number\n * @return {String|Number}\n * @api public\n */\n\nmodule.exports = function(val, options) {\n options = options || {};\n var type = typeof val;\n if (type === 'string' && val.length > 0) {\n return parse(val);\n } else if (type === 'number' && isFinite(val)) {\n return options.long ? fmtLong(val) : fmtShort(val);\n }\n throw new Error(\n 'val is not a non-empty string or a valid number. val=' +\n JSON.stringify(val)\n );\n};\n\n/**\n * Parse the given `str` and return milliseconds.\n *\n * @param {String} str\n * @return {Number}\n * @api private\n */\n\nfunction parse(str) {\n str = String(str);\n if (str.length > 100) {\n return;\n }\n var match = /^(-?(?:\\d+)?\\.?\\d+) *(milliseconds?|msecs?|ms|seconds?|secs?|s|minutes?|mins?|m|hours?|hrs?|h|days?|d|weeks?|w|years?|yrs?|y)?$/i.exec(\n str\n );\n if (!match) {\n return;\n }\n var n = parseFloat(match[1]);\n var type = (match[2] || 'ms').toLowerCase();\n switch (type) {\n case 'years':\n case 'year':\n case 'yrs':\n case 'yr':\n case 'y':\n return n * y;\n case 'weeks':\n case 'week':\n case 'w':\n return n * w;\n case 'days':\n case 'day':\n case 'd':\n return n * d;\n case 'hours':\n case 'hour':\n case 'hrs':\n case 'hr':\n case 'h':\n return n * h;\n case 'minutes':\n case 'minute':\n case 'mins':\n case 'min':\n case 'm':\n return n * m;\n case 'seconds':\n case 'second':\n case 'secs':\n case 'sec':\n case 's':\n return n * s;\n case 'milliseconds':\n case 'millisecond':\n case 'msecs':\n case 'msec':\n case 'ms':\n return n;\n default:\n return undefined;\n }\n}\n\n/**\n * Short format for `ms`.\n *\n * @param {Number} ms\n * @return {String}\n * @api private\n */\n\nfunction fmtShort(ms) {\n var msAbs = Math.abs(ms);\n if (msAbs >= d) {\n return Math.round(ms / d) + 'd';\n }\n if (msAbs >= h) {\n return Math.round(ms / h) + 'h';\n }\n if (msAbs >= m) {\n return Math.round(ms / m) + 'm';\n }\n if (msAbs >= s) {\n return Math.round(ms / s) + 's';\n }\n return ms + 'ms';\n}\n\n/**\n * Long format for `ms`.\n *\n * @param {Number} ms\n * @return {String}\n * @api private\n */\n\nfunction fmtLong(ms) {\n var msAbs = Math.abs(ms);\n if (msAbs >= d) {\n return plural(ms, msAbs, d, 'day');\n }\n if (msAbs >= h) {\n return plural(ms, msAbs, h, 'hour');\n }\n if (msAbs >= m) {\n return plural(ms, msAbs, m, 'minute');\n }\n if (msAbs >= s) {\n return plural(ms, msAbs, s, 'second');\n }\n return ms + ' ms';\n}\n\n/**\n * Pluralization helper.\n */\n\nfunction plural(ms, msAbs, n, name) {\n var isPlural = msAbs >= n * 1.5;\n return Math.round(ms / n) + ' ' + name + (isPlural ? 's' : '');\n}\n","\n/**\n * This is the common logic for both the Node.js and web browser\n * implementations of `debug()`.\n */\n\nfunction setup(env) {\n\tcreateDebug.debug = createDebug;\n\tcreateDebug.default = createDebug;\n\tcreateDebug.coerce = coerce;\n\tcreateDebug.disable = disable;\n\tcreateDebug.enable = enable;\n\tcreateDebug.enabled = enabled;\n\tcreateDebug.humanize = require('ms');\n\tcreateDebug.destroy = destroy;\n\n\tObject.keys(env).forEach(key => {\n\t\tcreateDebug[key] = env[key];\n\t});\n\n\t/**\n\t* The currently active debug mode names, and names to skip.\n\t*/\n\n\tcreateDebug.names = [];\n\tcreateDebug.skips = [];\n\n\t/**\n\t* Map of special \"%n\" handling functions, for the debug \"format\" argument.\n\t*\n\t* Valid key names are a single, lower or upper-case letter, i.e. \"n\" and \"N\".\n\t*/\n\tcreateDebug.formatters = {};\n\n\t/**\n\t* Selects a color for a debug namespace\n\t* @param {String} namespace The namespace string for the debug instance to be colored\n\t* @return {Number|String} An ANSI color code for the given namespace\n\t* @api private\n\t*/\n\tfunction selectColor(namespace) {\n\t\tlet hash = 0;\n\n\t\tfor (let i = 0; i < namespace.length; i++) {\n\t\t\thash = ((hash << 5) - hash) + namespace.charCodeAt(i);\n\t\t\thash |= 0; // Convert to 32bit integer\n\t\t}\n\n\t\treturn createDebug.colors[Math.abs(hash) % createDebug.colors.length];\n\t}\n\tcreateDebug.selectColor = selectColor;\n\n\t/**\n\t* Create a debugger with the given `namespace`.\n\t*\n\t* @param {String} namespace\n\t* @return {Function}\n\t* @api public\n\t*/\n\tfunction createDebug(namespace) {\n\t\tlet prevTime;\n\t\tlet enableOverride = null;\n\t\tlet namespacesCache;\n\t\tlet enabledCache;\n\n\t\tfunction debug(...args) {\n\t\t\t// Disabled?\n\t\t\tif (!debug.enabled) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tconst self = debug;\n\n\t\t\t// Set `diff` timestamp\n\t\t\tconst curr = Number(new Date());\n\t\t\tconst ms = curr - (prevTime || curr);\n\t\t\tself.diff = ms;\n\t\t\tself.prev = prevTime;\n\t\t\tself.curr = curr;\n\t\t\tprevTime = curr;\n\n\t\t\targs[0] = createDebug.coerce(args[0]);\n\n\t\t\tif (typeof args[0] !== 'string') {\n\t\t\t\t// Anything else let's inspect with %O\n\t\t\t\targs.unshift('%O');\n\t\t\t}\n\n\t\t\t// Apply any `formatters` transformations\n\t\t\tlet index = 0;\n\t\t\targs[0] = args[0].replace(/%([a-zA-Z%])/g, (match, format) => {\n\t\t\t\t// If we encounter an escaped % then don't increase the array index\n\t\t\t\tif (match === '%%') {\n\t\t\t\t\treturn '%';\n\t\t\t\t}\n\t\t\t\tindex++;\n\t\t\t\tconst formatter = createDebug.formatters[format];\n\t\t\t\tif (typeof formatter === 'function') {\n\t\t\t\t\tconst val = args[index];\n\t\t\t\t\tmatch = formatter.call(self, val);\n\n\t\t\t\t\t// Now we need to remove `args[index]` since it's inlined in the `format`\n\t\t\t\t\targs.splice(index, 1);\n\t\t\t\t\tindex--;\n\t\t\t\t}\n\t\t\t\treturn match;\n\t\t\t});\n\n\t\t\t// Apply env-specific formatting (colors, etc.)\n\t\t\tcreateDebug.formatArgs.call(self, args);\n\n\t\t\tconst logFn = self.log || createDebug.log;\n\t\t\tlogFn.apply(self, args);\n\t\t}\n\n\t\tdebug.namespace = namespace;\n\t\tdebug.useColors = createDebug.useColors();\n\t\tdebug.color = createDebug.selectColor(namespace);\n\t\tdebug.extend = extend;\n\t\tdebug.destroy = createDebug.destroy; // XXX Temporary. Will be removed in the next major release.\n\n\t\tObject.defineProperty(debug, 'enabled', {\n\t\t\tenumerable: true,\n\t\t\tconfigurable: false,\n\t\t\tget: () => {\n\t\t\t\tif (enableOverride !== null) {\n\t\t\t\t\treturn enableOverride;\n\t\t\t\t}\n\t\t\t\tif (namespacesCache !== createDebug.namespaces) {\n\t\t\t\t\tnamespacesCache = createDebug.namespaces;\n\t\t\t\t\tenabledCache = createDebug.enabled(namespace);\n\t\t\t\t}\n\n\t\t\t\treturn enabledCache;\n\t\t\t},\n\t\t\tset: v => {\n\t\t\t\tenableOverride = v;\n\t\t\t}\n\t\t});\n\n\t\t// Env-specific initialization logic for debug instances\n\t\tif (typeof createDebug.init === 'function') {\n\t\t\tcreateDebug.init(debug);\n\t\t}\n\n\t\treturn debug;\n\t}\n\n\tfunction extend(namespace, delimiter) {\n\t\tconst newDebug = createDebug(this.namespace + (typeof delimiter === 'undefined' ? ':' : delimiter) + namespace);\n\t\tnewDebug.log = this.log;\n\t\treturn newDebug;\n\t}\n\n\t/**\n\t* Enables a debug mode by namespaces. This can include modes\n\t* separated by a colon and wildcards.\n\t*\n\t* @param {String} namespaces\n\t* @api public\n\t*/\n\tfunction enable(namespaces) {\n\t\tcreateDebug.save(namespaces);\n\t\tcreateDebug.namespaces = namespaces;\n\n\t\tcreateDebug.names = [];\n\t\tcreateDebug.skips = [];\n\n\t\tlet i;\n\t\tconst split = (typeof namespaces === 'string' ? namespaces : '').split(/[\\s,]+/);\n\t\tconst len = split.length;\n\n\t\tfor (i = 0; i < len; i++) {\n\t\t\tif (!split[i]) {\n\t\t\t\t// ignore empty strings\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\tnamespaces = split[i].replace(/\\*/g, '.*?');\n\n\t\t\tif (namespaces[0] === '-') {\n\t\t\t\tcreateDebug.skips.push(new RegExp('^' + namespaces.slice(1) + '$'));\n\t\t\t} else {\n\t\t\t\tcreateDebug.names.push(new RegExp('^' + namespaces + '$'));\n\t\t\t}\n\t\t}\n\t}\n\n\t/**\n\t* Disable debug output.\n\t*\n\t* @return {String} namespaces\n\t* @api public\n\t*/\n\tfunction disable() {\n\t\tconst namespaces = [\n\t\t\t...createDebug.names.map(toNamespace),\n\t\t\t...createDebug.skips.map(toNamespace).map(namespace => '-' + namespace)\n\t\t].join(',');\n\t\tcreateDebug.enable('');\n\t\treturn namespaces;\n\t}\n\n\t/**\n\t* Returns true if the given mode name is enabled, false otherwise.\n\t*\n\t* @param {String} name\n\t* @return {Boolean}\n\t* @api public\n\t*/\n\tfunction enabled(name) {\n\t\tif (name[name.length - 1] === '*') {\n\t\t\treturn true;\n\t\t}\n\n\t\tlet i;\n\t\tlet len;\n\n\t\tfor (i = 0, len = createDebug.skips.length; i < len; i++) {\n\t\t\tif (createDebug.skips[i].test(name)) {\n\t\t\t\treturn false;\n\t\t\t}\n\t\t}\n\n\t\tfor (i = 0, len = createDebug.names.length; i < len; i++) {\n\t\t\tif (createDebug.names[i].test(name)) {\n\t\t\t\treturn true;\n\t\t\t}\n\t\t}\n\n\t\treturn false;\n\t}\n\n\t/**\n\t* Convert regexp to namespace\n\t*\n\t* @param {RegExp} regxep\n\t* @return {String} namespace\n\t* @api private\n\t*/\n\tfunction toNamespace(regexp) {\n\t\treturn regexp.toString()\n\t\t\t.substring(2, regexp.toString().length - 2)\n\t\t\t.replace(/\\.\\*\\?$/, '*');\n\t}\n\n\t/**\n\t* Coerce `val`.\n\t*\n\t* @param {Mixed} val\n\t* @return {Mixed}\n\t* @api private\n\t*/\n\tfunction coerce(val) {\n\t\tif (val instanceof Error) {\n\t\t\treturn val.stack || val.message;\n\t\t}\n\t\treturn val;\n\t}\n\n\t/**\n\t* XXX DO NOT USE. This is a temporary stub function.\n\t* XXX It WILL be removed in the next major release.\n\t*/\n\tfunction destroy() {\n\t\tconsole.warn('Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`.');\n\t}\n\n\tcreateDebug.enable(createDebug.load());\n\n\treturn createDebug;\n}\n\nmodule.exports = setup;\n","/* eslint-env browser */\n\n/**\n * This is the web browser implementation of `debug()`.\n */\n\nexports.formatArgs = formatArgs;\nexports.save = save;\nexports.load = load;\nexports.useColors = useColors;\nexports.storage = localstorage();\nexports.destroy = (() => {\n\tlet warned = false;\n\n\treturn () => {\n\t\tif (!warned) {\n\t\t\twarned = true;\n\t\t\tconsole.warn('Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`.');\n\t\t}\n\t};\n})();\n\n/**\n * Colors.\n */\n\nexports.colors = [\n\t'#0000CC',\n\t'#0000FF',\n\t'#0033CC',\n\t'#0033FF',\n\t'#0066CC',\n\t'#0066FF',\n\t'#0099CC',\n\t'#0099FF',\n\t'#00CC00',\n\t'#00CC33',\n\t'#00CC66',\n\t'#00CC99',\n\t'#00CCCC',\n\t'#00CCFF',\n\t'#3300CC',\n\t'#3300FF',\n\t'#3333CC',\n\t'#3333FF',\n\t'#3366CC',\n\t'#3366FF',\n\t'#3399CC',\n\t'#3399FF',\n\t'#33CC00',\n\t'#33CC33',\n\t'#33CC66',\n\t'#33CC99',\n\t'#33CCCC',\n\t'#33CCFF',\n\t'#6600CC',\n\t'#6600FF',\n\t'#6633CC',\n\t'#6633FF',\n\t'#66CC00',\n\t'#66CC33',\n\t'#9900CC',\n\t'#9900FF',\n\t'#9933CC',\n\t'#9933FF',\n\t'#99CC00',\n\t'#99CC33',\n\t'#CC0000',\n\t'#CC0033',\n\t'#CC0066',\n\t'#CC0099',\n\t'#CC00CC',\n\t'#CC00FF',\n\t'#CC3300',\n\t'#CC3333',\n\t'#CC3366',\n\t'#CC3399',\n\t'#CC33CC',\n\t'#CC33FF',\n\t'#CC6600',\n\t'#CC6633',\n\t'#CC9900',\n\t'#CC9933',\n\t'#CCCC00',\n\t'#CCCC33',\n\t'#FF0000',\n\t'#FF0033',\n\t'#FF0066',\n\t'#FF0099',\n\t'#FF00CC',\n\t'#FF00FF',\n\t'#FF3300',\n\t'#FF3333',\n\t'#FF3366',\n\t'#FF3399',\n\t'#FF33CC',\n\t'#FF33FF',\n\t'#FF6600',\n\t'#FF6633',\n\t'#FF9900',\n\t'#FF9933',\n\t'#FFCC00',\n\t'#FFCC33'\n];\n\n/**\n * Currently only WebKit-based Web Inspectors, Firefox >= v31,\n * and the Firebug extension (any Firefox version) are known\n * to support \"%c\" CSS customizations.\n *\n * TODO: add a `localStorage` variable to explicitly enable/disable colors\n */\n\n// eslint-disable-next-line complexity\nfunction useColors() {\n\t// NB: In an Electron preload script, document will be defined but not fully\n\t// initialized. Since we know we're in Chrome, we'll just detect this case\n\t// explicitly\n\tif (typeof window !== 'undefined' && window.process && (window.process.type === 'renderer' || window.process.__nwjs)) {\n\t\treturn true;\n\t}\n\n\t// Internet Explorer and Edge do not support colors.\n\tif (typeof navigator !== 'undefined' && navigator.userAgent && navigator.userAgent.toLowerCase().match(/(edge|trident)\\/(\\d+)/)) {\n\t\treturn false;\n\t}\n\n\t// Is webkit? http://stackoverflow.com/a/16459606/376773\n\t// document is undefined in react-native: https://github.com/facebook/react-native/pull/1632\n\treturn (typeof document !== 'undefined' && document.documentElement && document.documentElement.style && document.documentElement.style.WebkitAppearance) ||\n\t\t// Is firebug? http://stackoverflow.com/a/398120/376773\n\t\t(typeof window !== 'undefined' && window.console && (window.console.firebug || (window.console.exception && window.console.table))) ||\n\t\t// Is firefox >= v31?\n\t\t// https://developer.mozilla.org/en-US/docs/Tools/Web_Console#Styling_messages\n\t\t(typeof navigator !== 'undefined' && navigator.userAgent && navigator.userAgent.toLowerCase().match(/firefox\\/(\\d+)/) && parseInt(RegExp.$1, 10) >= 31) ||\n\t\t// Double check webkit in userAgent just in case we are in a worker\n\t\t(typeof navigator !== 'undefined' && navigator.userAgent && navigator.userAgent.toLowerCase().match(/applewebkit\\/(\\d+)/));\n}\n\n/**\n * Colorize log arguments if enabled.\n *\n * @api public\n */\n\nfunction formatArgs(args) {\n\targs[0] = (this.useColors ? '%c' : '') +\n\t\tthis.namespace +\n\t\t(this.useColors ? ' %c' : ' ') +\n\t\targs[0] +\n\t\t(this.useColors ? '%c ' : ' ') +\n\t\t'+' + module.exports.humanize(this.diff);\n\n\tif (!this.useColors) {\n\t\treturn;\n\t}\n\n\tconst c = 'color: ' + this.color;\n\targs.splice(1, 0, c, 'color: inherit');\n\n\t// The final \"%c\" is somewhat tricky, because there could be other\n\t// arguments passed either before or after the %c, so we need to\n\t// figure out the correct index to insert the CSS into\n\tlet index = 0;\n\tlet lastC = 0;\n\targs[0].replace(/%[a-zA-Z%]/g, match => {\n\t\tif (match === '%%') {\n\t\t\treturn;\n\t\t}\n\t\tindex++;\n\t\tif (match === '%c') {\n\t\t\t// We only are interested in the *last* %c\n\t\t\t// (the user may have provided their own)\n\t\t\tlastC = index;\n\t\t}\n\t});\n\n\targs.splice(lastC, 0, c);\n}\n\n/**\n * Invokes `console.debug()` when available.\n * No-op when `console.debug` is not a \"function\".\n * If `console.debug` is not available, falls back\n * to `console.log`.\n *\n * @api public\n */\nexports.log = console.debug || console.log || (() => {});\n\n/**\n * Save `namespaces`.\n *\n * @param {String} namespaces\n * @api private\n */\nfunction save(namespaces) {\n\ttry {\n\t\tif (namespaces) {\n\t\t\texports.storage.setItem('debug', namespaces);\n\t\t} else {\n\t\t\texports.storage.removeItem('debug');\n\t\t}\n\t} catch (error) {\n\t\t// Swallow\n\t\t// XXX (@Qix-) should we be logging these?\n\t}\n}\n\n/**\n * Load `namespaces`.\n *\n * @return {String} returns the previously persisted debug modes\n * @api private\n */\nfunction load() {\n\tlet r;\n\ttry {\n\t\tr = exports.storage.getItem('debug');\n\t} catch (error) {\n\t\t// Swallow\n\t\t// XXX (@Qix-) should we be logging these?\n\t}\n\n\t// If debug isn't set in LS, and we're in Electron, try to load $DEBUG\n\tif (!r && typeof process !== 'undefined' && 'env' in process) {\n\t\tr = process.env.DEBUG;\n\t}\n\n\treturn r;\n}\n\n/**\n * Localstorage attempts to return the localstorage.\n *\n * This is necessary because safari throws\n * when a user disables cookies/localstorage\n * and you attempt to access it.\n *\n * @return {LocalStorage}\n * @api private\n */\n\nfunction localstorage() {\n\ttry {\n\t\t// TVMLKit (Apple TV JS Runtime) does not have a window object, just localStorage in the global context\n\t\t// The Browser also has localStorage in the global context.\n\t\treturn localStorage;\n\t} catch (error) {\n\t\t// Swallow\n\t\t// XXX (@Qix-) should we be logging these?\n\t}\n}\n\nmodule.exports = require('./common')(exports);\n\nconst {formatters} = module.exports;\n\n/**\n * Map %j to `JSON.stringify()`, since no Web Inspectors do that by default.\n */\n\nformatters.j = function (v) {\n\ttry {\n\t\treturn JSON.stringify(v);\n\t} catch (error) {\n\t\treturn '[UnexpectedJSONParseError]: ' + error.message;\n\t}\n};\n","'use strict';\nmodule.exports = (flag, argv) => {\n\targv = argv || process.argv;\n\tconst prefix = flag.startsWith('-') ? '' : (flag.length === 1 ? '-' : '--');\n\tconst pos = argv.indexOf(prefix + flag);\n\tconst terminatorPos = argv.indexOf('--');\n\treturn pos !== -1 && (terminatorPos === -1 ? true : pos < terminatorPos);\n};\n","'use strict';\nconst os = require('os');\nconst hasFlag = require('has-flag');\n\nconst env = process.env;\n\nlet forceColor;\nif (hasFlag('no-color') ||\n\thasFlag('no-colors') ||\n\thasFlag('color=false')) {\n\tforceColor = false;\n} else if (hasFlag('color') ||\n\thasFlag('colors') ||\n\thasFlag('color=true') ||\n\thasFlag('color=always')) {\n\tforceColor = true;\n}\nif ('FORCE_COLOR' in env) {\n\tforceColor = env.FORCE_COLOR.length === 0 || parseInt(env.FORCE_COLOR, 10) !== 0;\n}\n\nfunction translateLevel(level) {\n\tif (level === 0) {\n\t\treturn false;\n\t}\n\n\treturn {\n\t\tlevel,\n\t\thasBasic: true,\n\t\thas256: level >= 2,\n\t\thas16m: level >= 3\n\t};\n}\n\nfunction supportsColor(stream) {\n\tif (forceColor === false) {\n\t\treturn 0;\n\t}\n\n\tif (hasFlag('color=16m') ||\n\t\thasFlag('color=full') ||\n\t\thasFlag('color=truecolor')) {\n\t\treturn 3;\n\t}\n\n\tif (hasFlag('color=256')) {\n\t\treturn 2;\n\t}\n\n\tif (stream && !stream.isTTY && forceColor !== true) {\n\t\treturn 0;\n\t}\n\n\tconst min = forceColor ? 1 : 0;\n\n\tif (process.platform === 'win32') {\n\t\t// Node.js 7.5.0 is the first version of Node.js to include a patch to\n\t\t// libuv that enables 256 color output on Windows. Anything earlier and it\n\t\t// won't work. However, here we target Node.js 8 at minimum as it is an LTS\n\t\t// release, and Node.js 7 is not. Windows 10 build 10586 is the first Windows\n\t\t// release that supports 256 colors. Windows 10 build 14931 is the first release\n\t\t// that supports 16m/TrueColor.\n\t\tconst osRelease = os.release().split('.');\n\t\tif (\n\t\t\tNumber(process.versions.node.split('.')[0]) >= 8 &&\n\t\t\tNumber(osRelease[0]) >= 10 &&\n\t\t\tNumber(osRelease[2]) >= 10586\n\t\t) {\n\t\t\treturn Number(osRelease[2]) >= 14931 ? 3 : 2;\n\t\t}\n\n\t\treturn 1;\n\t}\n\n\tif ('CI' in env) {\n\t\tif (['TRAVIS', 'CIRCLECI', 'APPVEYOR', 'GITLAB_CI'].some(sign => sign in env) || env.CI_NAME === 'codeship') {\n\t\t\treturn 1;\n\t\t}\n\n\t\treturn min;\n\t}\n\n\tif ('TEAMCITY_VERSION' in env) {\n\t\treturn /^(9\\.(0*[1-9]\\d*)\\.|\\d{2,}\\.)/.test(env.TEAMCITY_VERSION) ? 1 : 0;\n\t}\n\n\tif (env.COLORTERM === 'truecolor') {\n\t\treturn 3;\n\t}\n\n\tif ('TERM_PROGRAM' in env) {\n\t\tconst version = parseInt((env.TERM_PROGRAM_VERSION || '').split('.')[0], 10);\n\n\t\tswitch (env.TERM_PROGRAM) {\n\t\t\tcase 'iTerm.app':\n\t\t\t\treturn version >= 3 ? 3 : 2;\n\t\t\tcase 'Apple_Terminal':\n\t\t\t\treturn 2;\n\t\t\t// No default\n\t\t}\n\t}\n\n\tif (/-256(color)?$/i.test(env.TERM)) {\n\t\treturn 2;\n\t}\n\n\tif (/^screen|^xterm|^vt100|^vt220|^rxvt|color|ansi|cygwin|linux/i.test(env.TERM)) {\n\t\treturn 1;\n\t}\n\n\tif ('COLORTERM' in env) {\n\t\treturn 1;\n\t}\n\n\tif (env.TERM === 'dumb') {\n\t\treturn min;\n\t}\n\n\treturn min;\n}\n\nfunction getSupportLevel(stream) {\n\tconst level = supportsColor(stream);\n\treturn translateLevel(level);\n}\n\nmodule.exports = {\n\tsupportsColor: getSupportLevel,\n\tstdout: getSupportLevel(process.stdout),\n\tstderr: getSupportLevel(process.stderr)\n};\n","/**\n * Module dependencies.\n */\n\nconst tty = require('tty');\nconst util = require('util');\n\n/**\n * This is the Node.js implementation of `debug()`.\n */\n\nexports.init = init;\nexports.log = log;\nexports.formatArgs = formatArgs;\nexports.save = save;\nexports.load = load;\nexports.useColors = useColors;\nexports.destroy = util.deprecate(\n\t() => {},\n\t'Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`.'\n);\n\n/**\n * Colors.\n */\n\nexports.colors = [6, 2, 3, 4, 5, 1];\n\ntry {\n\t// Optional dependency (as in, doesn't need to be installed, NOT like optionalDependencies in package.json)\n\t// eslint-disable-next-line import/no-extraneous-dependencies\n\tconst supportsColor = require('supports-color');\n\n\tif (supportsColor && (supportsColor.stderr || supportsColor).level >= 2) {\n\t\texports.colors = [\n\t\t\t20,\n\t\t\t21,\n\t\t\t26,\n\t\t\t27,\n\t\t\t32,\n\t\t\t33,\n\t\t\t38,\n\t\t\t39,\n\t\t\t40,\n\t\t\t41,\n\t\t\t42,\n\t\t\t43,\n\t\t\t44,\n\t\t\t45,\n\t\t\t56,\n\t\t\t57,\n\t\t\t62,\n\t\t\t63,\n\t\t\t68,\n\t\t\t69,\n\t\t\t74,\n\t\t\t75,\n\t\t\t76,\n\t\t\t77,\n\t\t\t78,\n\t\t\t79,\n\t\t\t80,\n\t\t\t81,\n\t\t\t92,\n\t\t\t93,\n\t\t\t98,\n\t\t\t99,\n\t\t\t112,\n\t\t\t113,\n\t\t\t128,\n\t\t\t129,\n\t\t\t134,\n\t\t\t135,\n\t\t\t148,\n\t\t\t149,\n\t\t\t160,\n\t\t\t161,\n\t\t\t162,\n\t\t\t163,\n\t\t\t164,\n\t\t\t165,\n\t\t\t166,\n\t\t\t167,\n\t\t\t168,\n\t\t\t169,\n\t\t\t170,\n\t\t\t171,\n\t\t\t172,\n\t\t\t173,\n\t\t\t178,\n\t\t\t179,\n\t\t\t184,\n\t\t\t185,\n\t\t\t196,\n\t\t\t197,\n\t\t\t198,\n\t\t\t199,\n\t\t\t200,\n\t\t\t201,\n\t\t\t202,\n\t\t\t203,\n\t\t\t204,\n\t\t\t205,\n\t\t\t206,\n\t\t\t207,\n\t\t\t208,\n\t\t\t209,\n\t\t\t214,\n\t\t\t215,\n\t\t\t220,\n\t\t\t221\n\t\t];\n\t}\n} catch (error) {\n\t// Swallow - we only care if `supports-color` is available; it doesn't have to be.\n}\n\n/**\n * Build up the default `inspectOpts` object from the environment variables.\n *\n * $ DEBUG_COLORS=no DEBUG_DEPTH=10 DEBUG_SHOW_HIDDEN=enabled node script.js\n */\n\nexports.inspectOpts = Object.keys(process.env).filter(key => {\n\treturn /^debug_/i.test(key);\n}).reduce((obj, key) => {\n\t// Camel-case\n\tconst prop = key\n\t\t.substring(6)\n\t\t.toLowerCase()\n\t\t.replace(/_([a-z])/g, (_, k) => {\n\t\t\treturn k.toUpperCase();\n\t\t});\n\n\t// Coerce string value into JS value\n\tlet val = process.env[key];\n\tif (/^(yes|on|true|enabled)$/i.test(val)) {\n\t\tval = true;\n\t} else if (/^(no|off|false|disabled)$/i.test(val)) {\n\t\tval = false;\n\t} else if (val === 'null') {\n\t\tval = null;\n\t} else {\n\t\tval = Number(val);\n\t}\n\n\tobj[prop] = val;\n\treturn obj;\n}, {});\n\n/**\n * Is stdout a TTY? Colored output is enabled when `true`.\n */\n\nfunction useColors() {\n\treturn 'colors' in exports.inspectOpts ?\n\t\tBoolean(exports.inspectOpts.colors) :\n\t\ttty.isatty(process.stderr.fd);\n}\n\n/**\n * Adds ANSI color escape codes if enabled.\n *\n * @api public\n */\n\nfunction formatArgs(args) {\n\tconst {namespace: name, useColors} = this;\n\n\tif (useColors) {\n\t\tconst c = this.color;\n\t\tconst colorCode = '\\u001B[3' + (c < 8 ? c : '8;5;' + c);\n\t\tconst prefix = ` ${colorCode};1m${name} \\u001B[0m`;\n\n\t\targs[0] = prefix + args[0].split('\\n').join('\\n' + prefix);\n\t\targs.push(colorCode + 'm+' + module.exports.humanize(this.diff) + '\\u001B[0m');\n\t} else {\n\t\targs[0] = getDate() + name + ' ' + args[0];\n\t}\n}\n\nfunction getDate() {\n\tif (exports.inspectOpts.hideDate) {\n\t\treturn '';\n\t}\n\treturn new Date().toISOString() + ' ';\n}\n\n/**\n * Invokes `util.format()` with the specified arguments and writes to stderr.\n */\n\nfunction log(...args) {\n\treturn process.stderr.write(util.format(...args) + '\\n');\n}\n\n/**\n * Save `namespaces`.\n *\n * @param {String} namespaces\n * @api private\n */\nfunction save(namespaces) {\n\tif (namespaces) {\n\t\tprocess.env.DEBUG = namespaces;\n\t} else {\n\t\t// If you set a process.env field to null or undefined, it gets cast to the\n\t\t// string 'null' or 'undefined'. Just delete instead.\n\t\tdelete process.env.DEBUG;\n\t}\n}\n\n/**\n * Load `namespaces`.\n *\n * @return {String} returns the previously persisted debug modes\n * @api private\n */\n\nfunction load() {\n\treturn process.env.DEBUG;\n}\n\n/**\n * Init logic for `debug` instances.\n *\n * Create a new `inspectOpts` object in case `useColors` is set\n * differently for a particular `debug` instance.\n */\n\nfunction init(debug) {\n\tdebug.inspectOpts = {};\n\n\tconst keys = Object.keys(exports.inspectOpts);\n\tfor (let i = 0; i < keys.length; i++) {\n\t\tdebug.inspectOpts[keys[i]] = exports.inspectOpts[keys[i]];\n\t}\n}\n\nmodule.exports = require('./common')(exports);\n\nconst {formatters} = module.exports;\n\n/**\n * Map %o to `util.inspect()`, all on a single line.\n */\n\nformatters.o = function (v) {\n\tthis.inspectOpts.colors = this.useColors;\n\treturn util.inspect(v, this.inspectOpts)\n\t\t.split('\\n')\n\t\t.map(str => str.trim())\n\t\t.join(' ');\n};\n\n/**\n * Map %O to `util.inspect()`, allowing multiple lines if needed.\n */\n\nformatters.O = function (v) {\n\tthis.inspectOpts.colors = this.useColors;\n\treturn util.inspect(v, this.inspectOpts);\n};\n","/**\n * Detect Electron renderer / nwjs process, which is node, but we should\n * treat as a browser.\n */\n\nif (typeof process === 'undefined' || process.type === 'renderer' || process.browser === true || process.__nwjs) {\n\tmodule.exports = require('./browser.js');\n} else {\n\tmodule.exports = require('./node.js');\n}\n"],"names":["ms","createDebug","require$$0","self","exports","module","hasFlag","require$$1","tty","require$$2","useColors","require$$3","srcModule"],"mappings":"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","x_google_ignoreList":[0,1,2,3,4,5,6]}
|