@skrillex1224/android-toolkit 1.0.0 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +1 -8
- package/dist/index.cjs.map +2 -2
- package/dist/index.js +1 -8
- package/dist/index.js.map +2 -2
- package/package.json +4 -2
package/dist/index.cjs
CHANGED
|
@@ -244,9 +244,6 @@ var Logger = {
|
|
|
244
244
|
return `${((Date.now() - startedAt) / 1e3).toFixed(2)}s`;
|
|
245
245
|
}
|
|
246
246
|
};
|
|
247
|
-
function stripAnsi(value) {
|
|
248
|
-
return String(value || "").replace(/\u001b\[[0-9;]*m/g, "");
|
|
249
|
-
}
|
|
250
247
|
function sleep(ms) {
|
|
251
248
|
return new Promise((resolve) => setTimeout(resolve, ms));
|
|
252
249
|
}
|
|
@@ -1897,11 +1894,7 @@ var useAndroidToolKit = () => ({
|
|
|
1897
1894
|
Constants: constants_exports,
|
|
1898
1895
|
Errors: errors_exports,
|
|
1899
1896
|
Logger,
|
|
1900
|
-
Context
|
|
1901
|
-
$Internals: {
|
|
1902
|
-
LOG_TEMPLATES,
|
|
1903
|
-
stripAnsi
|
|
1904
|
-
}
|
|
1897
|
+
Context
|
|
1905
1898
|
});
|
|
1906
1899
|
// Annotate the CommonJS export names for ESM import in node:
|
|
1907
1900
|
0 && (module.exports = {
|