@mcesystems/adb-kit 1.0.7 → 1.0.9
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/index.js +1289 -8
- package/dist/index.js.map +4 -4
- package/dist/index.mjs +1293 -12
- package/dist/index.mjs.map +4 -4
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -5689,6 +5689,755 @@ var require_dump = __commonJS({
|
|
|
5689
5689
|
}
|
|
5690
5690
|
});
|
|
5691
5691
|
|
|
5692
|
+
// ../../node_modules/.pnpm/ms@2.1.3/node_modules/ms/index.js
|
|
5693
|
+
var require_ms = __commonJS({
|
|
5694
|
+
"../../node_modules/.pnpm/ms@2.1.3/node_modules/ms/index.js"(exports2, module2) {
|
|
5695
|
+
var s = 1e3;
|
|
5696
|
+
var m = s * 60;
|
|
5697
|
+
var h = m * 60;
|
|
5698
|
+
var d = h * 24;
|
|
5699
|
+
var w = d * 7;
|
|
5700
|
+
var y = d * 365.25;
|
|
5701
|
+
module2.exports = function(val, options) {
|
|
5702
|
+
options = options || {};
|
|
5703
|
+
var type = typeof val;
|
|
5704
|
+
if (type === "string" && val.length > 0) {
|
|
5705
|
+
return parse(val);
|
|
5706
|
+
} else if (type === "number" && isFinite(val)) {
|
|
5707
|
+
return options.long ? fmtLong(val) : fmtShort(val);
|
|
5708
|
+
}
|
|
5709
|
+
throw new Error(
|
|
5710
|
+
"val is not a non-empty string or a valid number. val=" + JSON.stringify(val)
|
|
5711
|
+
);
|
|
5712
|
+
};
|
|
5713
|
+
function parse(str) {
|
|
5714
|
+
str = String(str);
|
|
5715
|
+
if (str.length > 100) {
|
|
5716
|
+
return;
|
|
5717
|
+
}
|
|
5718
|
+
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(
|
|
5719
|
+
str
|
|
5720
|
+
);
|
|
5721
|
+
if (!match) {
|
|
5722
|
+
return;
|
|
5723
|
+
}
|
|
5724
|
+
var n = parseFloat(match[1]);
|
|
5725
|
+
var type = (match[2] || "ms").toLowerCase();
|
|
5726
|
+
switch (type) {
|
|
5727
|
+
case "years":
|
|
5728
|
+
case "year":
|
|
5729
|
+
case "yrs":
|
|
5730
|
+
case "yr":
|
|
5731
|
+
case "y":
|
|
5732
|
+
return n * y;
|
|
5733
|
+
case "weeks":
|
|
5734
|
+
case "week":
|
|
5735
|
+
case "w":
|
|
5736
|
+
return n * w;
|
|
5737
|
+
case "days":
|
|
5738
|
+
case "day":
|
|
5739
|
+
case "d":
|
|
5740
|
+
return n * d;
|
|
5741
|
+
case "hours":
|
|
5742
|
+
case "hour":
|
|
5743
|
+
case "hrs":
|
|
5744
|
+
case "hr":
|
|
5745
|
+
case "h":
|
|
5746
|
+
return n * h;
|
|
5747
|
+
case "minutes":
|
|
5748
|
+
case "minute":
|
|
5749
|
+
case "mins":
|
|
5750
|
+
case "min":
|
|
5751
|
+
case "m":
|
|
5752
|
+
return n * m;
|
|
5753
|
+
case "seconds":
|
|
5754
|
+
case "second":
|
|
5755
|
+
case "secs":
|
|
5756
|
+
case "sec":
|
|
5757
|
+
case "s":
|
|
5758
|
+
return n * s;
|
|
5759
|
+
case "milliseconds":
|
|
5760
|
+
case "millisecond":
|
|
5761
|
+
case "msecs":
|
|
5762
|
+
case "msec":
|
|
5763
|
+
case "ms":
|
|
5764
|
+
return n;
|
|
5765
|
+
default:
|
|
5766
|
+
return void 0;
|
|
5767
|
+
}
|
|
5768
|
+
}
|
|
5769
|
+
function fmtShort(ms) {
|
|
5770
|
+
var msAbs = Math.abs(ms);
|
|
5771
|
+
if (msAbs >= d) {
|
|
5772
|
+
return Math.round(ms / d) + "d";
|
|
5773
|
+
}
|
|
5774
|
+
if (msAbs >= h) {
|
|
5775
|
+
return Math.round(ms / h) + "h";
|
|
5776
|
+
}
|
|
5777
|
+
if (msAbs >= m) {
|
|
5778
|
+
return Math.round(ms / m) + "m";
|
|
5779
|
+
}
|
|
5780
|
+
if (msAbs >= s) {
|
|
5781
|
+
return Math.round(ms / s) + "s";
|
|
5782
|
+
}
|
|
5783
|
+
return ms + "ms";
|
|
5784
|
+
}
|
|
5785
|
+
function fmtLong(ms) {
|
|
5786
|
+
var msAbs = Math.abs(ms);
|
|
5787
|
+
if (msAbs >= d) {
|
|
5788
|
+
return plural(ms, msAbs, d, "day");
|
|
5789
|
+
}
|
|
5790
|
+
if (msAbs >= h) {
|
|
5791
|
+
return plural(ms, msAbs, h, "hour");
|
|
5792
|
+
}
|
|
5793
|
+
if (msAbs >= m) {
|
|
5794
|
+
return plural(ms, msAbs, m, "minute");
|
|
5795
|
+
}
|
|
5796
|
+
if (msAbs >= s) {
|
|
5797
|
+
return plural(ms, msAbs, s, "second");
|
|
5798
|
+
}
|
|
5799
|
+
return ms + " ms";
|
|
5800
|
+
}
|
|
5801
|
+
function plural(ms, msAbs, n, name) {
|
|
5802
|
+
var isPlural = msAbs >= n * 1.5;
|
|
5803
|
+
return Math.round(ms / n) + " " + name + (isPlural ? "s" : "");
|
|
5804
|
+
}
|
|
5805
|
+
}
|
|
5806
|
+
});
|
|
5807
|
+
|
|
5808
|
+
// ../../node_modules/.pnpm/debug@4.3.7/node_modules/debug/src/common.js
|
|
5809
|
+
var require_common = __commonJS({
|
|
5810
|
+
"../../node_modules/.pnpm/debug@4.3.7/node_modules/debug/src/common.js"(exports2, module2) {
|
|
5811
|
+
function setup(env2) {
|
|
5812
|
+
createDebug.debug = createDebug;
|
|
5813
|
+
createDebug.default = createDebug;
|
|
5814
|
+
createDebug.coerce = coerce;
|
|
5815
|
+
createDebug.disable = disable;
|
|
5816
|
+
createDebug.enable = enable;
|
|
5817
|
+
createDebug.enabled = enabled;
|
|
5818
|
+
createDebug.humanize = require_ms();
|
|
5819
|
+
createDebug.destroy = destroy;
|
|
5820
|
+
Object.keys(env2).forEach((key) => {
|
|
5821
|
+
createDebug[key] = env2[key];
|
|
5822
|
+
});
|
|
5823
|
+
createDebug.names = [];
|
|
5824
|
+
createDebug.skips = [];
|
|
5825
|
+
createDebug.formatters = {};
|
|
5826
|
+
function selectColor(namespace) {
|
|
5827
|
+
let hash = 0;
|
|
5828
|
+
for (let i = 0; i < namespace.length; i++) {
|
|
5829
|
+
hash = (hash << 5) - hash + namespace.charCodeAt(i);
|
|
5830
|
+
hash |= 0;
|
|
5831
|
+
}
|
|
5832
|
+
return createDebug.colors[Math.abs(hash) % createDebug.colors.length];
|
|
5833
|
+
}
|
|
5834
|
+
createDebug.selectColor = selectColor;
|
|
5835
|
+
function createDebug(namespace) {
|
|
5836
|
+
let prevTime;
|
|
5837
|
+
let enableOverride = null;
|
|
5838
|
+
let namespacesCache;
|
|
5839
|
+
let enabledCache;
|
|
5840
|
+
function debug2(...args) {
|
|
5841
|
+
if (!debug2.enabled) {
|
|
5842
|
+
return;
|
|
5843
|
+
}
|
|
5844
|
+
const self2 = debug2;
|
|
5845
|
+
const curr = Number(/* @__PURE__ */ new Date());
|
|
5846
|
+
const ms = curr - (prevTime || curr);
|
|
5847
|
+
self2.diff = ms;
|
|
5848
|
+
self2.prev = prevTime;
|
|
5849
|
+
self2.curr = curr;
|
|
5850
|
+
prevTime = curr;
|
|
5851
|
+
args[0] = createDebug.coerce(args[0]);
|
|
5852
|
+
if (typeof args[0] !== "string") {
|
|
5853
|
+
args.unshift("%O");
|
|
5854
|
+
}
|
|
5855
|
+
let index = 0;
|
|
5856
|
+
args[0] = args[0].replace(/%([a-zA-Z%])/g, (match, format) => {
|
|
5857
|
+
if (match === "%%") {
|
|
5858
|
+
return "%";
|
|
5859
|
+
}
|
|
5860
|
+
index++;
|
|
5861
|
+
const formatter = createDebug.formatters[format];
|
|
5862
|
+
if (typeof formatter === "function") {
|
|
5863
|
+
const val = args[index];
|
|
5864
|
+
match = formatter.call(self2, val);
|
|
5865
|
+
args.splice(index, 1);
|
|
5866
|
+
index--;
|
|
5867
|
+
}
|
|
5868
|
+
return match;
|
|
5869
|
+
});
|
|
5870
|
+
createDebug.formatArgs.call(self2, args);
|
|
5871
|
+
const logFn = self2.log || createDebug.log;
|
|
5872
|
+
logFn.apply(self2, args);
|
|
5873
|
+
}
|
|
5874
|
+
debug2.namespace = namespace;
|
|
5875
|
+
debug2.useColors = createDebug.useColors();
|
|
5876
|
+
debug2.color = createDebug.selectColor(namespace);
|
|
5877
|
+
debug2.extend = extend;
|
|
5878
|
+
debug2.destroy = createDebug.destroy;
|
|
5879
|
+
Object.defineProperty(debug2, "enabled", {
|
|
5880
|
+
enumerable: true,
|
|
5881
|
+
configurable: false,
|
|
5882
|
+
get: () => {
|
|
5883
|
+
if (enableOverride !== null) {
|
|
5884
|
+
return enableOverride;
|
|
5885
|
+
}
|
|
5886
|
+
if (namespacesCache !== createDebug.namespaces) {
|
|
5887
|
+
namespacesCache = createDebug.namespaces;
|
|
5888
|
+
enabledCache = createDebug.enabled(namespace);
|
|
5889
|
+
}
|
|
5890
|
+
return enabledCache;
|
|
5891
|
+
},
|
|
5892
|
+
set: (v) => {
|
|
5893
|
+
enableOverride = v;
|
|
5894
|
+
}
|
|
5895
|
+
});
|
|
5896
|
+
if (typeof createDebug.init === "function") {
|
|
5897
|
+
createDebug.init(debug2);
|
|
5898
|
+
}
|
|
5899
|
+
return debug2;
|
|
5900
|
+
}
|
|
5901
|
+
function extend(namespace, delimiter) {
|
|
5902
|
+
const newDebug = createDebug(this.namespace + (typeof delimiter === "undefined" ? ":" : delimiter) + namespace);
|
|
5903
|
+
newDebug.log = this.log;
|
|
5904
|
+
return newDebug;
|
|
5905
|
+
}
|
|
5906
|
+
function enable(namespaces) {
|
|
5907
|
+
createDebug.save(namespaces);
|
|
5908
|
+
createDebug.namespaces = namespaces;
|
|
5909
|
+
createDebug.names = [];
|
|
5910
|
+
createDebug.skips = [];
|
|
5911
|
+
let i;
|
|
5912
|
+
const split = (typeof namespaces === "string" ? namespaces : "").split(/[\s,]+/);
|
|
5913
|
+
const len = split.length;
|
|
5914
|
+
for (i = 0; i < len; i++) {
|
|
5915
|
+
if (!split[i]) {
|
|
5916
|
+
continue;
|
|
5917
|
+
}
|
|
5918
|
+
namespaces = split[i].replace(/\*/g, ".*?");
|
|
5919
|
+
if (namespaces[0] === "-") {
|
|
5920
|
+
createDebug.skips.push(new RegExp("^" + namespaces.slice(1) + "$"));
|
|
5921
|
+
} else {
|
|
5922
|
+
createDebug.names.push(new RegExp("^" + namespaces + "$"));
|
|
5923
|
+
}
|
|
5924
|
+
}
|
|
5925
|
+
}
|
|
5926
|
+
function disable() {
|
|
5927
|
+
const namespaces = [
|
|
5928
|
+
...createDebug.names.map(toNamespace),
|
|
5929
|
+
...createDebug.skips.map(toNamespace).map((namespace) => "-" + namespace)
|
|
5930
|
+
].join(",");
|
|
5931
|
+
createDebug.enable("");
|
|
5932
|
+
return namespaces;
|
|
5933
|
+
}
|
|
5934
|
+
function enabled(name) {
|
|
5935
|
+
if (name[name.length - 1] === "*") {
|
|
5936
|
+
return true;
|
|
5937
|
+
}
|
|
5938
|
+
let i;
|
|
5939
|
+
let len;
|
|
5940
|
+
for (i = 0, len = createDebug.skips.length; i < len; i++) {
|
|
5941
|
+
if (createDebug.skips[i].test(name)) {
|
|
5942
|
+
return false;
|
|
5943
|
+
}
|
|
5944
|
+
}
|
|
5945
|
+
for (i = 0, len = createDebug.names.length; i < len; i++) {
|
|
5946
|
+
if (createDebug.names[i].test(name)) {
|
|
5947
|
+
return true;
|
|
5948
|
+
}
|
|
5949
|
+
}
|
|
5950
|
+
return false;
|
|
5951
|
+
}
|
|
5952
|
+
function toNamespace(regexp) {
|
|
5953
|
+
return regexp.toString().substring(2, regexp.toString().length - 2).replace(/\.\*\?$/, "*");
|
|
5954
|
+
}
|
|
5955
|
+
function coerce(val) {
|
|
5956
|
+
if (val instanceof Error) {
|
|
5957
|
+
return val.stack || val.message;
|
|
5958
|
+
}
|
|
5959
|
+
return val;
|
|
5960
|
+
}
|
|
5961
|
+
function destroy() {
|
|
5962
|
+
console.warn("Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`.");
|
|
5963
|
+
}
|
|
5964
|
+
createDebug.enable(createDebug.load());
|
|
5965
|
+
return createDebug;
|
|
5966
|
+
}
|
|
5967
|
+
module2.exports = setup;
|
|
5968
|
+
}
|
|
5969
|
+
});
|
|
5970
|
+
|
|
5971
|
+
// ../../node_modules/.pnpm/debug@4.3.7/node_modules/debug/src/browser.js
|
|
5972
|
+
var require_browser = __commonJS({
|
|
5973
|
+
"../../node_modules/.pnpm/debug@4.3.7/node_modules/debug/src/browser.js"(exports2, module2) {
|
|
5974
|
+
exports2.formatArgs = formatArgs;
|
|
5975
|
+
exports2.save = save;
|
|
5976
|
+
exports2.load = load;
|
|
5977
|
+
exports2.useColors = useColors;
|
|
5978
|
+
exports2.storage = localstorage();
|
|
5979
|
+
exports2.destroy = /* @__PURE__ */ (() => {
|
|
5980
|
+
let warned = false;
|
|
5981
|
+
return () => {
|
|
5982
|
+
if (!warned) {
|
|
5983
|
+
warned = true;
|
|
5984
|
+
console.warn("Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`.");
|
|
5985
|
+
}
|
|
5986
|
+
};
|
|
5987
|
+
})();
|
|
5988
|
+
exports2.colors = [
|
|
5989
|
+
"#0000CC",
|
|
5990
|
+
"#0000FF",
|
|
5991
|
+
"#0033CC",
|
|
5992
|
+
"#0033FF",
|
|
5993
|
+
"#0066CC",
|
|
5994
|
+
"#0066FF",
|
|
5995
|
+
"#0099CC",
|
|
5996
|
+
"#0099FF",
|
|
5997
|
+
"#00CC00",
|
|
5998
|
+
"#00CC33",
|
|
5999
|
+
"#00CC66",
|
|
6000
|
+
"#00CC99",
|
|
6001
|
+
"#00CCCC",
|
|
6002
|
+
"#00CCFF",
|
|
6003
|
+
"#3300CC",
|
|
6004
|
+
"#3300FF",
|
|
6005
|
+
"#3333CC",
|
|
6006
|
+
"#3333FF",
|
|
6007
|
+
"#3366CC",
|
|
6008
|
+
"#3366FF",
|
|
6009
|
+
"#3399CC",
|
|
6010
|
+
"#3399FF",
|
|
6011
|
+
"#33CC00",
|
|
6012
|
+
"#33CC33",
|
|
6013
|
+
"#33CC66",
|
|
6014
|
+
"#33CC99",
|
|
6015
|
+
"#33CCCC",
|
|
6016
|
+
"#33CCFF",
|
|
6017
|
+
"#6600CC",
|
|
6018
|
+
"#6600FF",
|
|
6019
|
+
"#6633CC",
|
|
6020
|
+
"#6633FF",
|
|
6021
|
+
"#66CC00",
|
|
6022
|
+
"#66CC33",
|
|
6023
|
+
"#9900CC",
|
|
6024
|
+
"#9900FF",
|
|
6025
|
+
"#9933CC",
|
|
6026
|
+
"#9933FF",
|
|
6027
|
+
"#99CC00",
|
|
6028
|
+
"#99CC33",
|
|
6029
|
+
"#CC0000",
|
|
6030
|
+
"#CC0033",
|
|
6031
|
+
"#CC0066",
|
|
6032
|
+
"#CC0099",
|
|
6033
|
+
"#CC00CC",
|
|
6034
|
+
"#CC00FF",
|
|
6035
|
+
"#CC3300",
|
|
6036
|
+
"#CC3333",
|
|
6037
|
+
"#CC3366",
|
|
6038
|
+
"#CC3399",
|
|
6039
|
+
"#CC33CC",
|
|
6040
|
+
"#CC33FF",
|
|
6041
|
+
"#CC6600",
|
|
6042
|
+
"#CC6633",
|
|
6043
|
+
"#CC9900",
|
|
6044
|
+
"#CC9933",
|
|
6045
|
+
"#CCCC00",
|
|
6046
|
+
"#CCCC33",
|
|
6047
|
+
"#FF0000",
|
|
6048
|
+
"#FF0033",
|
|
6049
|
+
"#FF0066",
|
|
6050
|
+
"#FF0099",
|
|
6051
|
+
"#FF00CC",
|
|
6052
|
+
"#FF00FF",
|
|
6053
|
+
"#FF3300",
|
|
6054
|
+
"#FF3333",
|
|
6055
|
+
"#FF3366",
|
|
6056
|
+
"#FF3399",
|
|
6057
|
+
"#FF33CC",
|
|
6058
|
+
"#FF33FF",
|
|
6059
|
+
"#FF6600",
|
|
6060
|
+
"#FF6633",
|
|
6061
|
+
"#FF9900",
|
|
6062
|
+
"#FF9933",
|
|
6063
|
+
"#FFCC00",
|
|
6064
|
+
"#FFCC33"
|
|
6065
|
+
];
|
|
6066
|
+
function useColors() {
|
|
6067
|
+
if (typeof window !== "undefined" && window.process && (window.process.type === "renderer" || window.process.__nwjs)) {
|
|
6068
|
+
return true;
|
|
6069
|
+
}
|
|
6070
|
+
if (typeof navigator !== "undefined" && navigator.userAgent && navigator.userAgent.toLowerCase().match(/(edge|trident)\/(\d+)/)) {
|
|
6071
|
+
return false;
|
|
6072
|
+
}
|
|
6073
|
+
let m;
|
|
6074
|
+
return typeof document !== "undefined" && document.documentElement && document.documentElement.style && document.documentElement.style.WebkitAppearance || // Is firebug? http://stackoverflow.com/a/398120/376773
|
|
6075
|
+
typeof window !== "undefined" && window.console && (window.console.firebug || window.console.exception && window.console.table) || // Is firefox >= v31?
|
|
6076
|
+
// https://developer.mozilla.org/en-US/docs/Tools/Web_Console#Styling_messages
|
|
6077
|
+
typeof navigator !== "undefined" && navigator.userAgent && (m = navigator.userAgent.toLowerCase().match(/firefox\/(\d+)/)) && parseInt(m[1], 10) >= 31 || // Double check webkit in userAgent just in case we are in a worker
|
|
6078
|
+
typeof navigator !== "undefined" && navigator.userAgent && navigator.userAgent.toLowerCase().match(/applewebkit\/(\d+)/);
|
|
6079
|
+
}
|
|
6080
|
+
function formatArgs(args) {
|
|
6081
|
+
args[0] = (this.useColors ? "%c" : "") + this.namespace + (this.useColors ? " %c" : " ") + args[0] + (this.useColors ? "%c " : " ") + "+" + module2.exports.humanize(this.diff);
|
|
6082
|
+
if (!this.useColors) {
|
|
6083
|
+
return;
|
|
6084
|
+
}
|
|
6085
|
+
const c = "color: " + this.color;
|
|
6086
|
+
args.splice(1, 0, c, "color: inherit");
|
|
6087
|
+
let index = 0;
|
|
6088
|
+
let lastC = 0;
|
|
6089
|
+
args[0].replace(/%[a-zA-Z%]/g, (match) => {
|
|
6090
|
+
if (match === "%%") {
|
|
6091
|
+
return;
|
|
6092
|
+
}
|
|
6093
|
+
index++;
|
|
6094
|
+
if (match === "%c") {
|
|
6095
|
+
lastC = index;
|
|
6096
|
+
}
|
|
6097
|
+
});
|
|
6098
|
+
args.splice(lastC, 0, c);
|
|
6099
|
+
}
|
|
6100
|
+
exports2.log = console.debug || console.log || (() => {
|
|
6101
|
+
});
|
|
6102
|
+
function save(namespaces) {
|
|
6103
|
+
try {
|
|
6104
|
+
if (namespaces) {
|
|
6105
|
+
exports2.storage.setItem("debug", namespaces);
|
|
6106
|
+
} else {
|
|
6107
|
+
exports2.storage.removeItem("debug");
|
|
6108
|
+
}
|
|
6109
|
+
} catch (error) {
|
|
6110
|
+
}
|
|
6111
|
+
}
|
|
6112
|
+
function load() {
|
|
6113
|
+
let r;
|
|
6114
|
+
try {
|
|
6115
|
+
r = exports2.storage.getItem("debug");
|
|
6116
|
+
} catch (error) {
|
|
6117
|
+
}
|
|
6118
|
+
if (!r && typeof process !== "undefined" && "env" in process) {
|
|
6119
|
+
r = process.env.DEBUG;
|
|
6120
|
+
}
|
|
6121
|
+
return r;
|
|
6122
|
+
}
|
|
6123
|
+
function localstorage() {
|
|
6124
|
+
try {
|
|
6125
|
+
return localStorage;
|
|
6126
|
+
} catch (error) {
|
|
6127
|
+
}
|
|
6128
|
+
}
|
|
6129
|
+
module2.exports = require_common()(exports2);
|
|
6130
|
+
var { formatters } = module2.exports;
|
|
6131
|
+
formatters.j = function(v) {
|
|
6132
|
+
try {
|
|
6133
|
+
return JSON.stringify(v);
|
|
6134
|
+
} catch (error) {
|
|
6135
|
+
return "[UnexpectedJSONParseError]: " + error.message;
|
|
6136
|
+
}
|
|
6137
|
+
};
|
|
6138
|
+
}
|
|
6139
|
+
});
|
|
6140
|
+
|
|
6141
|
+
// ../../node_modules/.pnpm/has-flag@4.0.0/node_modules/has-flag/index.js
|
|
6142
|
+
var require_has_flag = __commonJS({
|
|
6143
|
+
"../../node_modules/.pnpm/has-flag@4.0.0/node_modules/has-flag/index.js"(exports2, module2) {
|
|
6144
|
+
"use strict";
|
|
6145
|
+
module2.exports = (flag, argv = process.argv) => {
|
|
6146
|
+
const prefix = flag.startsWith("-") ? "" : flag.length === 1 ? "-" : "--";
|
|
6147
|
+
const position = argv.indexOf(prefix + flag);
|
|
6148
|
+
const terminatorPosition = argv.indexOf("--");
|
|
6149
|
+
return position !== -1 && (terminatorPosition === -1 || position < terminatorPosition);
|
|
6150
|
+
};
|
|
6151
|
+
}
|
|
6152
|
+
});
|
|
6153
|
+
|
|
6154
|
+
// ../../node_modules/.pnpm/supports-color@7.2.0/node_modules/supports-color/index.js
|
|
6155
|
+
var require_supports_color = __commonJS({
|
|
6156
|
+
"../../node_modules/.pnpm/supports-color@7.2.0/node_modules/supports-color/index.js"(exports2, module2) {
|
|
6157
|
+
"use strict";
|
|
6158
|
+
var os = require("os");
|
|
6159
|
+
var tty = require("tty");
|
|
6160
|
+
var hasFlag = require_has_flag();
|
|
6161
|
+
var { env: env2 } = process;
|
|
6162
|
+
var forceColor;
|
|
6163
|
+
if (hasFlag("no-color") || hasFlag("no-colors") || hasFlag("color=false") || hasFlag("color=never")) {
|
|
6164
|
+
forceColor = 0;
|
|
6165
|
+
} else if (hasFlag("color") || hasFlag("colors") || hasFlag("color=true") || hasFlag("color=always")) {
|
|
6166
|
+
forceColor = 1;
|
|
6167
|
+
}
|
|
6168
|
+
if ("FORCE_COLOR" in env2) {
|
|
6169
|
+
if (env2.FORCE_COLOR === "true") {
|
|
6170
|
+
forceColor = 1;
|
|
6171
|
+
} else if (env2.FORCE_COLOR === "false") {
|
|
6172
|
+
forceColor = 0;
|
|
6173
|
+
} else {
|
|
6174
|
+
forceColor = env2.FORCE_COLOR.length === 0 ? 1 : Math.min(parseInt(env2.FORCE_COLOR, 10), 3);
|
|
6175
|
+
}
|
|
6176
|
+
}
|
|
6177
|
+
function translateLevel(level) {
|
|
6178
|
+
if (level === 0) {
|
|
6179
|
+
return false;
|
|
6180
|
+
}
|
|
6181
|
+
return {
|
|
6182
|
+
level,
|
|
6183
|
+
hasBasic: true,
|
|
6184
|
+
has256: level >= 2,
|
|
6185
|
+
has16m: level >= 3
|
|
6186
|
+
};
|
|
6187
|
+
}
|
|
6188
|
+
function supportsColor(haveStream, streamIsTTY) {
|
|
6189
|
+
if (forceColor === 0) {
|
|
6190
|
+
return 0;
|
|
6191
|
+
}
|
|
6192
|
+
if (hasFlag("color=16m") || hasFlag("color=full") || hasFlag("color=truecolor")) {
|
|
6193
|
+
return 3;
|
|
6194
|
+
}
|
|
6195
|
+
if (hasFlag("color=256")) {
|
|
6196
|
+
return 2;
|
|
6197
|
+
}
|
|
6198
|
+
if (haveStream && !streamIsTTY && forceColor === void 0) {
|
|
6199
|
+
return 0;
|
|
6200
|
+
}
|
|
6201
|
+
const min = forceColor || 0;
|
|
6202
|
+
if (env2.TERM === "dumb") {
|
|
6203
|
+
return min;
|
|
6204
|
+
}
|
|
6205
|
+
if (process.platform === "win32") {
|
|
6206
|
+
const osRelease = os.release().split(".");
|
|
6207
|
+
if (Number(osRelease[0]) >= 10 && Number(osRelease[2]) >= 10586) {
|
|
6208
|
+
return Number(osRelease[2]) >= 14931 ? 3 : 2;
|
|
6209
|
+
}
|
|
6210
|
+
return 1;
|
|
6211
|
+
}
|
|
6212
|
+
if ("CI" in env2) {
|
|
6213
|
+
if (["TRAVIS", "CIRCLECI", "APPVEYOR", "GITLAB_CI", "GITHUB_ACTIONS", "BUILDKITE"].some((sign) => sign in env2) || env2.CI_NAME === "codeship") {
|
|
6214
|
+
return 1;
|
|
6215
|
+
}
|
|
6216
|
+
return min;
|
|
6217
|
+
}
|
|
6218
|
+
if ("TEAMCITY_VERSION" in env2) {
|
|
6219
|
+
return /^(9\.(0*[1-9]\d*)\.|\d{2,}\.)/.test(env2.TEAMCITY_VERSION) ? 1 : 0;
|
|
6220
|
+
}
|
|
6221
|
+
if (env2.COLORTERM === "truecolor") {
|
|
6222
|
+
return 3;
|
|
6223
|
+
}
|
|
6224
|
+
if ("TERM_PROGRAM" in env2) {
|
|
6225
|
+
const version = parseInt((env2.TERM_PROGRAM_VERSION || "").split(".")[0], 10);
|
|
6226
|
+
switch (env2.TERM_PROGRAM) {
|
|
6227
|
+
case "iTerm.app":
|
|
6228
|
+
return version >= 3 ? 3 : 2;
|
|
6229
|
+
case "Apple_Terminal":
|
|
6230
|
+
return 2;
|
|
6231
|
+
}
|
|
6232
|
+
}
|
|
6233
|
+
if (/-256(color)?$/i.test(env2.TERM)) {
|
|
6234
|
+
return 2;
|
|
6235
|
+
}
|
|
6236
|
+
if (/^screen|^xterm|^vt100|^vt220|^rxvt|color|ansi|cygwin|linux/i.test(env2.TERM)) {
|
|
6237
|
+
return 1;
|
|
6238
|
+
}
|
|
6239
|
+
if ("COLORTERM" in env2) {
|
|
6240
|
+
return 1;
|
|
6241
|
+
}
|
|
6242
|
+
return min;
|
|
6243
|
+
}
|
|
6244
|
+
function getSupportLevel(stream) {
|
|
6245
|
+
const level = supportsColor(stream, stream && stream.isTTY);
|
|
6246
|
+
return translateLevel(level);
|
|
6247
|
+
}
|
|
6248
|
+
module2.exports = {
|
|
6249
|
+
supportsColor: getSupportLevel,
|
|
6250
|
+
stdout: translateLevel(supportsColor(true, tty.isatty(1))),
|
|
6251
|
+
stderr: translateLevel(supportsColor(true, tty.isatty(2)))
|
|
6252
|
+
};
|
|
6253
|
+
}
|
|
6254
|
+
});
|
|
6255
|
+
|
|
6256
|
+
// ../../node_modules/.pnpm/debug@4.3.7/node_modules/debug/src/node.js
|
|
6257
|
+
var require_node = __commonJS({
|
|
6258
|
+
"../../node_modules/.pnpm/debug@4.3.7/node_modules/debug/src/node.js"(exports2, module2) {
|
|
6259
|
+
var tty = require("tty");
|
|
6260
|
+
var util = require("util");
|
|
6261
|
+
exports2.init = init;
|
|
6262
|
+
exports2.log = log;
|
|
6263
|
+
exports2.formatArgs = formatArgs;
|
|
6264
|
+
exports2.save = save;
|
|
6265
|
+
exports2.load = load;
|
|
6266
|
+
exports2.useColors = useColors;
|
|
6267
|
+
exports2.destroy = util.deprecate(
|
|
6268
|
+
() => {
|
|
6269
|
+
},
|
|
6270
|
+
"Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`."
|
|
6271
|
+
);
|
|
6272
|
+
exports2.colors = [6, 2, 3, 4, 5, 1];
|
|
6273
|
+
try {
|
|
6274
|
+
const supportsColor = require_supports_color();
|
|
6275
|
+
if (supportsColor && (supportsColor.stderr || supportsColor).level >= 2) {
|
|
6276
|
+
exports2.colors = [
|
|
6277
|
+
20,
|
|
6278
|
+
21,
|
|
6279
|
+
26,
|
|
6280
|
+
27,
|
|
6281
|
+
32,
|
|
6282
|
+
33,
|
|
6283
|
+
38,
|
|
6284
|
+
39,
|
|
6285
|
+
40,
|
|
6286
|
+
41,
|
|
6287
|
+
42,
|
|
6288
|
+
43,
|
|
6289
|
+
44,
|
|
6290
|
+
45,
|
|
6291
|
+
56,
|
|
6292
|
+
57,
|
|
6293
|
+
62,
|
|
6294
|
+
63,
|
|
6295
|
+
68,
|
|
6296
|
+
69,
|
|
6297
|
+
74,
|
|
6298
|
+
75,
|
|
6299
|
+
76,
|
|
6300
|
+
77,
|
|
6301
|
+
78,
|
|
6302
|
+
79,
|
|
6303
|
+
80,
|
|
6304
|
+
81,
|
|
6305
|
+
92,
|
|
6306
|
+
93,
|
|
6307
|
+
98,
|
|
6308
|
+
99,
|
|
6309
|
+
112,
|
|
6310
|
+
113,
|
|
6311
|
+
128,
|
|
6312
|
+
129,
|
|
6313
|
+
134,
|
|
6314
|
+
135,
|
|
6315
|
+
148,
|
|
6316
|
+
149,
|
|
6317
|
+
160,
|
|
6318
|
+
161,
|
|
6319
|
+
162,
|
|
6320
|
+
163,
|
|
6321
|
+
164,
|
|
6322
|
+
165,
|
|
6323
|
+
166,
|
|
6324
|
+
167,
|
|
6325
|
+
168,
|
|
6326
|
+
169,
|
|
6327
|
+
170,
|
|
6328
|
+
171,
|
|
6329
|
+
172,
|
|
6330
|
+
173,
|
|
6331
|
+
178,
|
|
6332
|
+
179,
|
|
6333
|
+
184,
|
|
6334
|
+
185,
|
|
6335
|
+
196,
|
|
6336
|
+
197,
|
|
6337
|
+
198,
|
|
6338
|
+
199,
|
|
6339
|
+
200,
|
|
6340
|
+
201,
|
|
6341
|
+
202,
|
|
6342
|
+
203,
|
|
6343
|
+
204,
|
|
6344
|
+
205,
|
|
6345
|
+
206,
|
|
6346
|
+
207,
|
|
6347
|
+
208,
|
|
6348
|
+
209,
|
|
6349
|
+
214,
|
|
6350
|
+
215,
|
|
6351
|
+
220,
|
|
6352
|
+
221
|
|
6353
|
+
];
|
|
6354
|
+
}
|
|
6355
|
+
} catch (error) {
|
|
6356
|
+
}
|
|
6357
|
+
exports2.inspectOpts = Object.keys(process.env).filter((key) => {
|
|
6358
|
+
return /^debug_/i.test(key);
|
|
6359
|
+
}).reduce((obj2, key) => {
|
|
6360
|
+
const prop = key.substring(6).toLowerCase().replace(/_([a-z])/g, (_, k) => {
|
|
6361
|
+
return k.toUpperCase();
|
|
6362
|
+
});
|
|
6363
|
+
let val = process.env[key];
|
|
6364
|
+
if (/^(yes|on|true|enabled)$/i.test(val)) {
|
|
6365
|
+
val = true;
|
|
6366
|
+
} else if (/^(no|off|false|disabled)$/i.test(val)) {
|
|
6367
|
+
val = false;
|
|
6368
|
+
} else if (val === "null") {
|
|
6369
|
+
val = null;
|
|
6370
|
+
} else {
|
|
6371
|
+
val = Number(val);
|
|
6372
|
+
}
|
|
6373
|
+
obj2[prop] = val;
|
|
6374
|
+
return obj2;
|
|
6375
|
+
}, {});
|
|
6376
|
+
function useColors() {
|
|
6377
|
+
return "colors" in exports2.inspectOpts ? Boolean(exports2.inspectOpts.colors) : tty.isatty(process.stderr.fd);
|
|
6378
|
+
}
|
|
6379
|
+
function formatArgs(args) {
|
|
6380
|
+
const { namespace: name, useColors: useColors2 } = this;
|
|
6381
|
+
if (useColors2) {
|
|
6382
|
+
const c = this.color;
|
|
6383
|
+
const colorCode = "\x1B[3" + (c < 8 ? c : "8;5;" + c);
|
|
6384
|
+
const prefix = ` ${colorCode};1m${name} \x1B[0m`;
|
|
6385
|
+
args[0] = prefix + args[0].split("\n").join("\n" + prefix);
|
|
6386
|
+
args.push(colorCode + "m+" + module2.exports.humanize(this.diff) + "\x1B[0m");
|
|
6387
|
+
} else {
|
|
6388
|
+
args[0] = getDate() + name + " " + args[0];
|
|
6389
|
+
}
|
|
6390
|
+
}
|
|
6391
|
+
function getDate() {
|
|
6392
|
+
if (exports2.inspectOpts.hideDate) {
|
|
6393
|
+
return "";
|
|
6394
|
+
}
|
|
6395
|
+
return (/* @__PURE__ */ new Date()).toISOString() + " ";
|
|
6396
|
+
}
|
|
6397
|
+
function log(...args) {
|
|
6398
|
+
return process.stderr.write(util.formatWithOptions(exports2.inspectOpts, ...args) + "\n");
|
|
6399
|
+
}
|
|
6400
|
+
function save(namespaces) {
|
|
6401
|
+
if (namespaces) {
|
|
6402
|
+
process.env.DEBUG = namespaces;
|
|
6403
|
+
} else {
|
|
6404
|
+
delete process.env.DEBUG;
|
|
6405
|
+
}
|
|
6406
|
+
}
|
|
6407
|
+
function load() {
|
|
6408
|
+
return process.env.DEBUG;
|
|
6409
|
+
}
|
|
6410
|
+
function init(debug2) {
|
|
6411
|
+
debug2.inspectOpts = {};
|
|
6412
|
+
const keys = Object.keys(exports2.inspectOpts);
|
|
6413
|
+
for (let i = 0; i < keys.length; i++) {
|
|
6414
|
+
debug2.inspectOpts[keys[i]] = exports2.inspectOpts[keys[i]];
|
|
6415
|
+
}
|
|
6416
|
+
}
|
|
6417
|
+
module2.exports = require_common()(exports2);
|
|
6418
|
+
var { formatters } = module2.exports;
|
|
6419
|
+
formatters.o = function(v) {
|
|
6420
|
+
this.inspectOpts.colors = this.useColors;
|
|
6421
|
+
return util.inspect(v, this.inspectOpts).split("\n").map((str) => str.trim()).join(" ");
|
|
6422
|
+
};
|
|
6423
|
+
formatters.O = function(v) {
|
|
6424
|
+
this.inspectOpts.colors = this.useColors;
|
|
6425
|
+
return util.inspect(v, this.inspectOpts);
|
|
6426
|
+
};
|
|
6427
|
+
}
|
|
6428
|
+
});
|
|
6429
|
+
|
|
6430
|
+
// ../../node_modules/.pnpm/debug@4.3.7/node_modules/debug/src/index.js
|
|
6431
|
+
var require_src = __commonJS({
|
|
6432
|
+
"../../node_modules/.pnpm/debug@4.3.7/node_modules/debug/src/index.js"(exports2, module2) {
|
|
6433
|
+
if (typeof process === "undefined" || process.type === "renderer" || process.browser === true || process.__nwjs) {
|
|
6434
|
+
module2.exports = require_browser();
|
|
6435
|
+
} else {
|
|
6436
|
+
module2.exports = require_node();
|
|
6437
|
+
}
|
|
6438
|
+
}
|
|
6439
|
+
});
|
|
6440
|
+
|
|
5692
6441
|
// ../../node_modules/.pnpm/@devicefarmer+adbkit@3.3.8/node_modules/@devicefarmer/adbkit/dist/src/adb/connection.js
|
|
5693
6442
|
var require_connection = __commonJS({
|
|
5694
6443
|
"../../node_modules/.pnpm/@devicefarmer+adbkit@3.3.8/node_modules/@devicefarmer/adbkit/dist/src/adb/connection.js"(exports2) {
|
|
@@ -5729,7 +6478,7 @@ var require_connection = __commonJS({
|
|
|
5729
6478
|
var child_process_1 = require("child_process");
|
|
5730
6479
|
var parser_1 = __importDefault(require_parser());
|
|
5731
6480
|
var dump_1 = __importDefault(require_dump());
|
|
5732
|
-
var debug_1 = __importDefault(
|
|
6481
|
+
var debug_1 = __importDefault(require_src());
|
|
5733
6482
|
var bluebird_1 = __importDefault(require_bluebird());
|
|
5734
6483
|
var debug2 = (0, debug_1.default)("adb:connection");
|
|
5735
6484
|
var Connection = class extends events_1.EventEmitter {
|
|
@@ -5815,7 +6564,7 @@ var require_command = __commonJS({
|
|
|
5815
6564
|
};
|
|
5816
6565
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
5817
6566
|
var protocol_1 = __importDefault(require_protocol());
|
|
5818
|
-
var debug_1 = __importDefault(
|
|
6567
|
+
var debug_1 = __importDefault(require_src());
|
|
5819
6568
|
var debug2 = (0, debug_1.default)("adb:command");
|
|
5820
6569
|
var RE_SQUOT = /'/g;
|
|
5821
6570
|
var RE_ESCAPE = /([$`\\!"])/g;
|
|
@@ -24371,7 +25120,7 @@ var require_service = __commonJS({
|
|
|
24371
25120
|
return mod && mod.__esModule ? mod : { "default": mod };
|
|
24372
25121
|
};
|
|
24373
25122
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
24374
|
-
var debug_1 = __importDefault(
|
|
25123
|
+
var debug_1 = __importDefault(require_src());
|
|
24375
25124
|
var events_1 = require("events");
|
|
24376
25125
|
var packet_1 = __importDefault(require_packet());
|
|
24377
25126
|
var bluebird_1 = __importDefault(require_bluebird());
|
|
@@ -24567,7 +25316,7 @@ var require_socket = __commonJS({
|
|
|
24567
25316
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
24568
25317
|
var events_1 = require("events");
|
|
24569
25318
|
var crypto = __importStar(require("crypto"));
|
|
24570
|
-
var debug_1 = __importDefault(
|
|
25319
|
+
var debug_1 = __importDefault(require_src());
|
|
24571
25320
|
var bluebird_1 = __importDefault(require_bluebird());
|
|
24572
25321
|
var packetreader_1 = __importDefault(require_packetreader());
|
|
24573
25322
|
var rollingcounter_1 = __importDefault(require_rollingcounter());
|
|
@@ -26229,7 +26978,7 @@ var require_sync = __commonJS({
|
|
|
26229
26978
|
var Path = __importStar(require("path"));
|
|
26230
26979
|
var bluebird_1 = __importDefault(require_bluebird());
|
|
26231
26980
|
var events_1 = require("events");
|
|
26232
|
-
var debug_1 = __importDefault(
|
|
26981
|
+
var debug_1 = __importDefault(require_src());
|
|
26233
26982
|
var parser_1 = __importDefault(require_parser());
|
|
26234
26983
|
var protocol_1 = __importDefault(require_protocol());
|
|
26235
26984
|
var stats_1 = __importDefault(require_stats());
|
|
@@ -26752,7 +27501,7 @@ var require_framebuffer = __commonJS({
|
|
|
26752
27501
|
};
|
|
26753
27502
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
26754
27503
|
var child_process_1 = require("child_process");
|
|
26755
|
-
var debug_1 = __importDefault(
|
|
27504
|
+
var debug_1 = __importDefault(require_src());
|
|
26756
27505
|
var rgbtransform_1 = __importDefault(require_rgbtransform());
|
|
26757
27506
|
var protocol_1 = __importDefault(require_protocol());
|
|
26758
27507
|
var command_1 = __importDefault(require_command());
|
|
@@ -28446,7 +29195,7 @@ var require_DeviceClient = __commonJS({
|
|
|
28446
29195
|
var host_1 = require_host();
|
|
28447
29196
|
var host_transport_1 = require_host_transport();
|
|
28448
29197
|
var host_serial_1 = require_host_serial();
|
|
28449
|
-
var debug_1 = __importDefault(
|
|
29198
|
+
var debug_1 = __importDefault(require_src());
|
|
28450
29199
|
var bluebird_1 = __importDefault(require_bluebird());
|
|
28451
29200
|
var debug2 = (0, debug_1.default)("adb:client");
|
|
28452
29201
|
var NoUserOptionError = (err) => err.message.indexOf("--user") !== -1;
|
|
@@ -29424,6 +30173,538 @@ var require_dist = __commonJS({
|
|
|
29424
30173
|
}
|
|
29425
30174
|
});
|
|
29426
30175
|
|
|
30176
|
+
// ../../node_modules/.pnpm/debug@4.4.3/node_modules/debug/src/common.js
|
|
30177
|
+
var require_common2 = __commonJS({
|
|
30178
|
+
"../../node_modules/.pnpm/debug@4.4.3/node_modules/debug/src/common.js"(exports2, module2) {
|
|
30179
|
+
function setup(env2) {
|
|
30180
|
+
createDebug.debug = createDebug;
|
|
30181
|
+
createDebug.default = createDebug;
|
|
30182
|
+
createDebug.coerce = coerce;
|
|
30183
|
+
createDebug.disable = disable;
|
|
30184
|
+
createDebug.enable = enable;
|
|
30185
|
+
createDebug.enabled = enabled;
|
|
30186
|
+
createDebug.humanize = require_ms();
|
|
30187
|
+
createDebug.destroy = destroy;
|
|
30188
|
+
Object.keys(env2).forEach((key) => {
|
|
30189
|
+
createDebug[key] = env2[key];
|
|
30190
|
+
});
|
|
30191
|
+
createDebug.names = [];
|
|
30192
|
+
createDebug.skips = [];
|
|
30193
|
+
createDebug.formatters = {};
|
|
30194
|
+
function selectColor(namespace) {
|
|
30195
|
+
let hash = 0;
|
|
30196
|
+
for (let i = 0; i < namespace.length; i++) {
|
|
30197
|
+
hash = (hash << 5) - hash + namespace.charCodeAt(i);
|
|
30198
|
+
hash |= 0;
|
|
30199
|
+
}
|
|
30200
|
+
return createDebug.colors[Math.abs(hash) % createDebug.colors.length];
|
|
30201
|
+
}
|
|
30202
|
+
createDebug.selectColor = selectColor;
|
|
30203
|
+
function createDebug(namespace) {
|
|
30204
|
+
let prevTime;
|
|
30205
|
+
let enableOverride = null;
|
|
30206
|
+
let namespacesCache;
|
|
30207
|
+
let enabledCache;
|
|
30208
|
+
function debug2(...args) {
|
|
30209
|
+
if (!debug2.enabled) {
|
|
30210
|
+
return;
|
|
30211
|
+
}
|
|
30212
|
+
const self2 = debug2;
|
|
30213
|
+
const curr = Number(/* @__PURE__ */ new Date());
|
|
30214
|
+
const ms = curr - (prevTime || curr);
|
|
30215
|
+
self2.diff = ms;
|
|
30216
|
+
self2.prev = prevTime;
|
|
30217
|
+
self2.curr = curr;
|
|
30218
|
+
prevTime = curr;
|
|
30219
|
+
args[0] = createDebug.coerce(args[0]);
|
|
30220
|
+
if (typeof args[0] !== "string") {
|
|
30221
|
+
args.unshift("%O");
|
|
30222
|
+
}
|
|
30223
|
+
let index = 0;
|
|
30224
|
+
args[0] = args[0].replace(/%([a-zA-Z%])/g, (match, format) => {
|
|
30225
|
+
if (match === "%%") {
|
|
30226
|
+
return "%";
|
|
30227
|
+
}
|
|
30228
|
+
index++;
|
|
30229
|
+
const formatter = createDebug.formatters[format];
|
|
30230
|
+
if (typeof formatter === "function") {
|
|
30231
|
+
const val = args[index];
|
|
30232
|
+
match = formatter.call(self2, val);
|
|
30233
|
+
args.splice(index, 1);
|
|
30234
|
+
index--;
|
|
30235
|
+
}
|
|
30236
|
+
return match;
|
|
30237
|
+
});
|
|
30238
|
+
createDebug.formatArgs.call(self2, args);
|
|
30239
|
+
const logFn = self2.log || createDebug.log;
|
|
30240
|
+
logFn.apply(self2, args);
|
|
30241
|
+
}
|
|
30242
|
+
debug2.namespace = namespace;
|
|
30243
|
+
debug2.useColors = createDebug.useColors();
|
|
30244
|
+
debug2.color = createDebug.selectColor(namespace);
|
|
30245
|
+
debug2.extend = extend;
|
|
30246
|
+
debug2.destroy = createDebug.destroy;
|
|
30247
|
+
Object.defineProperty(debug2, "enabled", {
|
|
30248
|
+
enumerable: true,
|
|
30249
|
+
configurable: false,
|
|
30250
|
+
get: () => {
|
|
30251
|
+
if (enableOverride !== null) {
|
|
30252
|
+
return enableOverride;
|
|
30253
|
+
}
|
|
30254
|
+
if (namespacesCache !== createDebug.namespaces) {
|
|
30255
|
+
namespacesCache = createDebug.namespaces;
|
|
30256
|
+
enabledCache = createDebug.enabled(namespace);
|
|
30257
|
+
}
|
|
30258
|
+
return enabledCache;
|
|
30259
|
+
},
|
|
30260
|
+
set: (v) => {
|
|
30261
|
+
enableOverride = v;
|
|
30262
|
+
}
|
|
30263
|
+
});
|
|
30264
|
+
if (typeof createDebug.init === "function") {
|
|
30265
|
+
createDebug.init(debug2);
|
|
30266
|
+
}
|
|
30267
|
+
return debug2;
|
|
30268
|
+
}
|
|
30269
|
+
function extend(namespace, delimiter) {
|
|
30270
|
+
const newDebug = createDebug(this.namespace + (typeof delimiter === "undefined" ? ":" : delimiter) + namespace);
|
|
30271
|
+
newDebug.log = this.log;
|
|
30272
|
+
return newDebug;
|
|
30273
|
+
}
|
|
30274
|
+
function enable(namespaces) {
|
|
30275
|
+
createDebug.save(namespaces);
|
|
30276
|
+
createDebug.namespaces = namespaces;
|
|
30277
|
+
createDebug.names = [];
|
|
30278
|
+
createDebug.skips = [];
|
|
30279
|
+
const split = (typeof namespaces === "string" ? namespaces : "").trim().replace(/\s+/g, ",").split(",").filter(Boolean);
|
|
30280
|
+
for (const ns of split) {
|
|
30281
|
+
if (ns[0] === "-") {
|
|
30282
|
+
createDebug.skips.push(ns.slice(1));
|
|
30283
|
+
} else {
|
|
30284
|
+
createDebug.names.push(ns);
|
|
30285
|
+
}
|
|
30286
|
+
}
|
|
30287
|
+
}
|
|
30288
|
+
function matchesTemplate(search, template) {
|
|
30289
|
+
let searchIndex = 0;
|
|
30290
|
+
let templateIndex = 0;
|
|
30291
|
+
let starIndex = -1;
|
|
30292
|
+
let matchIndex = 0;
|
|
30293
|
+
while (searchIndex < search.length) {
|
|
30294
|
+
if (templateIndex < template.length && (template[templateIndex] === search[searchIndex] || template[templateIndex] === "*")) {
|
|
30295
|
+
if (template[templateIndex] === "*") {
|
|
30296
|
+
starIndex = templateIndex;
|
|
30297
|
+
matchIndex = searchIndex;
|
|
30298
|
+
templateIndex++;
|
|
30299
|
+
} else {
|
|
30300
|
+
searchIndex++;
|
|
30301
|
+
templateIndex++;
|
|
30302
|
+
}
|
|
30303
|
+
} else if (starIndex !== -1) {
|
|
30304
|
+
templateIndex = starIndex + 1;
|
|
30305
|
+
matchIndex++;
|
|
30306
|
+
searchIndex = matchIndex;
|
|
30307
|
+
} else {
|
|
30308
|
+
return false;
|
|
30309
|
+
}
|
|
30310
|
+
}
|
|
30311
|
+
while (templateIndex < template.length && template[templateIndex] === "*") {
|
|
30312
|
+
templateIndex++;
|
|
30313
|
+
}
|
|
30314
|
+
return templateIndex === template.length;
|
|
30315
|
+
}
|
|
30316
|
+
function disable() {
|
|
30317
|
+
const namespaces = [
|
|
30318
|
+
...createDebug.names,
|
|
30319
|
+
...createDebug.skips.map((namespace) => "-" + namespace)
|
|
30320
|
+
].join(",");
|
|
30321
|
+
createDebug.enable("");
|
|
30322
|
+
return namespaces;
|
|
30323
|
+
}
|
|
30324
|
+
function enabled(name) {
|
|
30325
|
+
for (const skip of createDebug.skips) {
|
|
30326
|
+
if (matchesTemplate(name, skip)) {
|
|
30327
|
+
return false;
|
|
30328
|
+
}
|
|
30329
|
+
}
|
|
30330
|
+
for (const ns of createDebug.names) {
|
|
30331
|
+
if (matchesTemplate(name, ns)) {
|
|
30332
|
+
return true;
|
|
30333
|
+
}
|
|
30334
|
+
}
|
|
30335
|
+
return false;
|
|
30336
|
+
}
|
|
30337
|
+
function coerce(val) {
|
|
30338
|
+
if (val instanceof Error) {
|
|
30339
|
+
return val.stack || val.message;
|
|
30340
|
+
}
|
|
30341
|
+
return val;
|
|
30342
|
+
}
|
|
30343
|
+
function destroy() {
|
|
30344
|
+
console.warn("Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`.");
|
|
30345
|
+
}
|
|
30346
|
+
createDebug.enable(createDebug.load());
|
|
30347
|
+
return createDebug;
|
|
30348
|
+
}
|
|
30349
|
+
module2.exports = setup;
|
|
30350
|
+
}
|
|
30351
|
+
});
|
|
30352
|
+
|
|
30353
|
+
// ../../node_modules/.pnpm/debug@4.4.3/node_modules/debug/src/browser.js
|
|
30354
|
+
var require_browser2 = __commonJS({
|
|
30355
|
+
"../../node_modules/.pnpm/debug@4.4.3/node_modules/debug/src/browser.js"(exports2, module2) {
|
|
30356
|
+
exports2.formatArgs = formatArgs;
|
|
30357
|
+
exports2.save = save;
|
|
30358
|
+
exports2.load = load;
|
|
30359
|
+
exports2.useColors = useColors;
|
|
30360
|
+
exports2.storage = localstorage();
|
|
30361
|
+
exports2.destroy = /* @__PURE__ */ (() => {
|
|
30362
|
+
let warned = false;
|
|
30363
|
+
return () => {
|
|
30364
|
+
if (!warned) {
|
|
30365
|
+
warned = true;
|
|
30366
|
+
console.warn("Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`.");
|
|
30367
|
+
}
|
|
30368
|
+
};
|
|
30369
|
+
})();
|
|
30370
|
+
exports2.colors = [
|
|
30371
|
+
"#0000CC",
|
|
30372
|
+
"#0000FF",
|
|
30373
|
+
"#0033CC",
|
|
30374
|
+
"#0033FF",
|
|
30375
|
+
"#0066CC",
|
|
30376
|
+
"#0066FF",
|
|
30377
|
+
"#0099CC",
|
|
30378
|
+
"#0099FF",
|
|
30379
|
+
"#00CC00",
|
|
30380
|
+
"#00CC33",
|
|
30381
|
+
"#00CC66",
|
|
30382
|
+
"#00CC99",
|
|
30383
|
+
"#00CCCC",
|
|
30384
|
+
"#00CCFF",
|
|
30385
|
+
"#3300CC",
|
|
30386
|
+
"#3300FF",
|
|
30387
|
+
"#3333CC",
|
|
30388
|
+
"#3333FF",
|
|
30389
|
+
"#3366CC",
|
|
30390
|
+
"#3366FF",
|
|
30391
|
+
"#3399CC",
|
|
30392
|
+
"#3399FF",
|
|
30393
|
+
"#33CC00",
|
|
30394
|
+
"#33CC33",
|
|
30395
|
+
"#33CC66",
|
|
30396
|
+
"#33CC99",
|
|
30397
|
+
"#33CCCC",
|
|
30398
|
+
"#33CCFF",
|
|
30399
|
+
"#6600CC",
|
|
30400
|
+
"#6600FF",
|
|
30401
|
+
"#6633CC",
|
|
30402
|
+
"#6633FF",
|
|
30403
|
+
"#66CC00",
|
|
30404
|
+
"#66CC33",
|
|
30405
|
+
"#9900CC",
|
|
30406
|
+
"#9900FF",
|
|
30407
|
+
"#9933CC",
|
|
30408
|
+
"#9933FF",
|
|
30409
|
+
"#99CC00",
|
|
30410
|
+
"#99CC33",
|
|
30411
|
+
"#CC0000",
|
|
30412
|
+
"#CC0033",
|
|
30413
|
+
"#CC0066",
|
|
30414
|
+
"#CC0099",
|
|
30415
|
+
"#CC00CC",
|
|
30416
|
+
"#CC00FF",
|
|
30417
|
+
"#CC3300",
|
|
30418
|
+
"#CC3333",
|
|
30419
|
+
"#CC3366",
|
|
30420
|
+
"#CC3399",
|
|
30421
|
+
"#CC33CC",
|
|
30422
|
+
"#CC33FF",
|
|
30423
|
+
"#CC6600",
|
|
30424
|
+
"#CC6633",
|
|
30425
|
+
"#CC9900",
|
|
30426
|
+
"#CC9933",
|
|
30427
|
+
"#CCCC00",
|
|
30428
|
+
"#CCCC33",
|
|
30429
|
+
"#FF0000",
|
|
30430
|
+
"#FF0033",
|
|
30431
|
+
"#FF0066",
|
|
30432
|
+
"#FF0099",
|
|
30433
|
+
"#FF00CC",
|
|
30434
|
+
"#FF00FF",
|
|
30435
|
+
"#FF3300",
|
|
30436
|
+
"#FF3333",
|
|
30437
|
+
"#FF3366",
|
|
30438
|
+
"#FF3399",
|
|
30439
|
+
"#FF33CC",
|
|
30440
|
+
"#FF33FF",
|
|
30441
|
+
"#FF6600",
|
|
30442
|
+
"#FF6633",
|
|
30443
|
+
"#FF9900",
|
|
30444
|
+
"#FF9933",
|
|
30445
|
+
"#FFCC00",
|
|
30446
|
+
"#FFCC33"
|
|
30447
|
+
];
|
|
30448
|
+
function useColors() {
|
|
30449
|
+
if (typeof window !== "undefined" && window.process && (window.process.type === "renderer" || window.process.__nwjs)) {
|
|
30450
|
+
return true;
|
|
30451
|
+
}
|
|
30452
|
+
if (typeof navigator !== "undefined" && navigator.userAgent && navigator.userAgent.toLowerCase().match(/(edge|trident)\/(\d+)/)) {
|
|
30453
|
+
return false;
|
|
30454
|
+
}
|
|
30455
|
+
let m;
|
|
30456
|
+
return typeof document !== "undefined" && document.documentElement && document.documentElement.style && document.documentElement.style.WebkitAppearance || // Is firebug? http://stackoverflow.com/a/398120/376773
|
|
30457
|
+
typeof window !== "undefined" && window.console && (window.console.firebug || window.console.exception && window.console.table) || // Is firefox >= v31?
|
|
30458
|
+
// https://developer.mozilla.org/en-US/docs/Tools/Web_Console#Styling_messages
|
|
30459
|
+
typeof navigator !== "undefined" && navigator.userAgent && (m = navigator.userAgent.toLowerCase().match(/firefox\/(\d+)/)) && parseInt(m[1], 10) >= 31 || // Double check webkit in userAgent just in case we are in a worker
|
|
30460
|
+
typeof navigator !== "undefined" && navigator.userAgent && navigator.userAgent.toLowerCase().match(/applewebkit\/(\d+)/);
|
|
30461
|
+
}
|
|
30462
|
+
function formatArgs(args) {
|
|
30463
|
+
args[0] = (this.useColors ? "%c" : "") + this.namespace + (this.useColors ? " %c" : " ") + args[0] + (this.useColors ? "%c " : " ") + "+" + module2.exports.humanize(this.diff);
|
|
30464
|
+
if (!this.useColors) {
|
|
30465
|
+
return;
|
|
30466
|
+
}
|
|
30467
|
+
const c = "color: " + this.color;
|
|
30468
|
+
args.splice(1, 0, c, "color: inherit");
|
|
30469
|
+
let index = 0;
|
|
30470
|
+
let lastC = 0;
|
|
30471
|
+
args[0].replace(/%[a-zA-Z%]/g, (match) => {
|
|
30472
|
+
if (match === "%%") {
|
|
30473
|
+
return;
|
|
30474
|
+
}
|
|
30475
|
+
index++;
|
|
30476
|
+
if (match === "%c") {
|
|
30477
|
+
lastC = index;
|
|
30478
|
+
}
|
|
30479
|
+
});
|
|
30480
|
+
args.splice(lastC, 0, c);
|
|
30481
|
+
}
|
|
30482
|
+
exports2.log = console.debug || console.log || (() => {
|
|
30483
|
+
});
|
|
30484
|
+
function save(namespaces) {
|
|
30485
|
+
try {
|
|
30486
|
+
if (namespaces) {
|
|
30487
|
+
exports2.storage.setItem("debug", namespaces);
|
|
30488
|
+
} else {
|
|
30489
|
+
exports2.storage.removeItem("debug");
|
|
30490
|
+
}
|
|
30491
|
+
} catch (error) {
|
|
30492
|
+
}
|
|
30493
|
+
}
|
|
30494
|
+
function load() {
|
|
30495
|
+
let r;
|
|
30496
|
+
try {
|
|
30497
|
+
r = exports2.storage.getItem("debug") || exports2.storage.getItem("DEBUG");
|
|
30498
|
+
} catch (error) {
|
|
30499
|
+
}
|
|
30500
|
+
if (!r && typeof process !== "undefined" && "env" in process) {
|
|
30501
|
+
r = process.env.DEBUG;
|
|
30502
|
+
}
|
|
30503
|
+
return r;
|
|
30504
|
+
}
|
|
30505
|
+
function localstorage() {
|
|
30506
|
+
try {
|
|
30507
|
+
return localStorage;
|
|
30508
|
+
} catch (error) {
|
|
30509
|
+
}
|
|
30510
|
+
}
|
|
30511
|
+
module2.exports = require_common2()(exports2);
|
|
30512
|
+
var { formatters } = module2.exports;
|
|
30513
|
+
formatters.j = function(v) {
|
|
30514
|
+
try {
|
|
30515
|
+
return JSON.stringify(v);
|
|
30516
|
+
} catch (error) {
|
|
30517
|
+
return "[UnexpectedJSONParseError]: " + error.message;
|
|
30518
|
+
}
|
|
30519
|
+
};
|
|
30520
|
+
}
|
|
30521
|
+
});
|
|
30522
|
+
|
|
30523
|
+
// ../../node_modules/.pnpm/debug@4.4.3/node_modules/debug/src/node.js
|
|
30524
|
+
var require_node2 = __commonJS({
|
|
30525
|
+
"../../node_modules/.pnpm/debug@4.4.3/node_modules/debug/src/node.js"(exports2, module2) {
|
|
30526
|
+
var tty = require("tty");
|
|
30527
|
+
var util = require("util");
|
|
30528
|
+
exports2.init = init;
|
|
30529
|
+
exports2.log = log;
|
|
30530
|
+
exports2.formatArgs = formatArgs;
|
|
30531
|
+
exports2.save = save;
|
|
30532
|
+
exports2.load = load;
|
|
30533
|
+
exports2.useColors = useColors;
|
|
30534
|
+
exports2.destroy = util.deprecate(
|
|
30535
|
+
() => {
|
|
30536
|
+
},
|
|
30537
|
+
"Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`."
|
|
30538
|
+
);
|
|
30539
|
+
exports2.colors = [6, 2, 3, 4, 5, 1];
|
|
30540
|
+
try {
|
|
30541
|
+
const supportsColor = require_supports_color();
|
|
30542
|
+
if (supportsColor && (supportsColor.stderr || supportsColor).level >= 2) {
|
|
30543
|
+
exports2.colors = [
|
|
30544
|
+
20,
|
|
30545
|
+
21,
|
|
30546
|
+
26,
|
|
30547
|
+
27,
|
|
30548
|
+
32,
|
|
30549
|
+
33,
|
|
30550
|
+
38,
|
|
30551
|
+
39,
|
|
30552
|
+
40,
|
|
30553
|
+
41,
|
|
30554
|
+
42,
|
|
30555
|
+
43,
|
|
30556
|
+
44,
|
|
30557
|
+
45,
|
|
30558
|
+
56,
|
|
30559
|
+
57,
|
|
30560
|
+
62,
|
|
30561
|
+
63,
|
|
30562
|
+
68,
|
|
30563
|
+
69,
|
|
30564
|
+
74,
|
|
30565
|
+
75,
|
|
30566
|
+
76,
|
|
30567
|
+
77,
|
|
30568
|
+
78,
|
|
30569
|
+
79,
|
|
30570
|
+
80,
|
|
30571
|
+
81,
|
|
30572
|
+
92,
|
|
30573
|
+
93,
|
|
30574
|
+
98,
|
|
30575
|
+
99,
|
|
30576
|
+
112,
|
|
30577
|
+
113,
|
|
30578
|
+
128,
|
|
30579
|
+
129,
|
|
30580
|
+
134,
|
|
30581
|
+
135,
|
|
30582
|
+
148,
|
|
30583
|
+
149,
|
|
30584
|
+
160,
|
|
30585
|
+
161,
|
|
30586
|
+
162,
|
|
30587
|
+
163,
|
|
30588
|
+
164,
|
|
30589
|
+
165,
|
|
30590
|
+
166,
|
|
30591
|
+
167,
|
|
30592
|
+
168,
|
|
30593
|
+
169,
|
|
30594
|
+
170,
|
|
30595
|
+
171,
|
|
30596
|
+
172,
|
|
30597
|
+
173,
|
|
30598
|
+
178,
|
|
30599
|
+
179,
|
|
30600
|
+
184,
|
|
30601
|
+
185,
|
|
30602
|
+
196,
|
|
30603
|
+
197,
|
|
30604
|
+
198,
|
|
30605
|
+
199,
|
|
30606
|
+
200,
|
|
30607
|
+
201,
|
|
30608
|
+
202,
|
|
30609
|
+
203,
|
|
30610
|
+
204,
|
|
30611
|
+
205,
|
|
30612
|
+
206,
|
|
30613
|
+
207,
|
|
30614
|
+
208,
|
|
30615
|
+
209,
|
|
30616
|
+
214,
|
|
30617
|
+
215,
|
|
30618
|
+
220,
|
|
30619
|
+
221
|
|
30620
|
+
];
|
|
30621
|
+
}
|
|
30622
|
+
} catch (error) {
|
|
30623
|
+
}
|
|
30624
|
+
exports2.inspectOpts = Object.keys(process.env).filter((key) => {
|
|
30625
|
+
return /^debug_/i.test(key);
|
|
30626
|
+
}).reduce((obj2, key) => {
|
|
30627
|
+
const prop = key.substring(6).toLowerCase().replace(/_([a-z])/g, (_, k) => {
|
|
30628
|
+
return k.toUpperCase();
|
|
30629
|
+
});
|
|
30630
|
+
let val = process.env[key];
|
|
30631
|
+
if (/^(yes|on|true|enabled)$/i.test(val)) {
|
|
30632
|
+
val = true;
|
|
30633
|
+
} else if (/^(no|off|false|disabled)$/i.test(val)) {
|
|
30634
|
+
val = false;
|
|
30635
|
+
} else if (val === "null") {
|
|
30636
|
+
val = null;
|
|
30637
|
+
} else {
|
|
30638
|
+
val = Number(val);
|
|
30639
|
+
}
|
|
30640
|
+
obj2[prop] = val;
|
|
30641
|
+
return obj2;
|
|
30642
|
+
}, {});
|
|
30643
|
+
function useColors() {
|
|
30644
|
+
return "colors" in exports2.inspectOpts ? Boolean(exports2.inspectOpts.colors) : tty.isatty(process.stderr.fd);
|
|
30645
|
+
}
|
|
30646
|
+
function formatArgs(args) {
|
|
30647
|
+
const { namespace: name, useColors: useColors2 } = this;
|
|
30648
|
+
if (useColors2) {
|
|
30649
|
+
const c = this.color;
|
|
30650
|
+
const colorCode = "\x1B[3" + (c < 8 ? c : "8;5;" + c);
|
|
30651
|
+
const prefix = ` ${colorCode};1m${name} \x1B[0m`;
|
|
30652
|
+
args[0] = prefix + args[0].split("\n").join("\n" + prefix);
|
|
30653
|
+
args.push(colorCode + "m+" + module2.exports.humanize(this.diff) + "\x1B[0m");
|
|
30654
|
+
} else {
|
|
30655
|
+
args[0] = getDate() + name + " " + args[0];
|
|
30656
|
+
}
|
|
30657
|
+
}
|
|
30658
|
+
function getDate() {
|
|
30659
|
+
if (exports2.inspectOpts.hideDate) {
|
|
30660
|
+
return "";
|
|
30661
|
+
}
|
|
30662
|
+
return (/* @__PURE__ */ new Date()).toISOString() + " ";
|
|
30663
|
+
}
|
|
30664
|
+
function log(...args) {
|
|
30665
|
+
return process.stderr.write(util.formatWithOptions(exports2.inspectOpts, ...args) + "\n");
|
|
30666
|
+
}
|
|
30667
|
+
function save(namespaces) {
|
|
30668
|
+
if (namespaces) {
|
|
30669
|
+
process.env.DEBUG = namespaces;
|
|
30670
|
+
} else {
|
|
30671
|
+
delete process.env.DEBUG;
|
|
30672
|
+
}
|
|
30673
|
+
}
|
|
30674
|
+
function load() {
|
|
30675
|
+
return process.env.DEBUG;
|
|
30676
|
+
}
|
|
30677
|
+
function init(debug2) {
|
|
30678
|
+
debug2.inspectOpts = {};
|
|
30679
|
+
const keys = Object.keys(exports2.inspectOpts);
|
|
30680
|
+
for (let i = 0; i < keys.length; i++) {
|
|
30681
|
+
debug2.inspectOpts[keys[i]] = exports2.inspectOpts[keys[i]];
|
|
30682
|
+
}
|
|
30683
|
+
}
|
|
30684
|
+
module2.exports = require_common2()(exports2);
|
|
30685
|
+
var { formatters } = module2.exports;
|
|
30686
|
+
formatters.o = function(v) {
|
|
30687
|
+
this.inspectOpts.colors = this.useColors;
|
|
30688
|
+
return util.inspect(v, this.inspectOpts).split("\n").map((str) => str.trim()).join(" ");
|
|
30689
|
+
};
|
|
30690
|
+
formatters.O = function(v) {
|
|
30691
|
+
this.inspectOpts.colors = this.useColors;
|
|
30692
|
+
return util.inspect(v, this.inspectOpts);
|
|
30693
|
+
};
|
|
30694
|
+
}
|
|
30695
|
+
});
|
|
30696
|
+
|
|
30697
|
+
// ../../node_modules/.pnpm/debug@4.4.3/node_modules/debug/src/index.js
|
|
30698
|
+
var require_src2 = __commonJS({
|
|
30699
|
+
"../../node_modules/.pnpm/debug@4.4.3/node_modules/debug/src/index.js"(exports2, module2) {
|
|
30700
|
+
if (typeof process === "undefined" || process.type === "renderer" || process.browser === true || process.__nwjs) {
|
|
30701
|
+
module2.exports = require_browser2();
|
|
30702
|
+
} else {
|
|
30703
|
+
module2.exports = require_node2();
|
|
30704
|
+
}
|
|
30705
|
+
}
|
|
30706
|
+
});
|
|
30707
|
+
|
|
29427
30708
|
// src/index.ts
|
|
29428
30709
|
var index_exports = {};
|
|
29429
30710
|
__export(index_exports, {
|
|
@@ -29480,7 +30761,7 @@ function getAdbBinaryPath() {
|
|
|
29480
30761
|
}
|
|
29481
30762
|
|
|
29482
30763
|
// src/utils/debug.ts
|
|
29483
|
-
var import_debug = __toESM(
|
|
30764
|
+
var import_debug = __toESM(require_src2());
|
|
29484
30765
|
var logTask = (0, import_debug.default)("adb-kit:task");
|
|
29485
30766
|
var logInfo = (0, import_debug.default)("adb-kit:info");
|
|
29486
30767
|
var logWarning = (0, import_debug.default)("adb-kit:warning");
|