@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.js
CHANGED
|
@@ -215,9 +215,6 @@ var Logger = {
|
|
|
215
215
|
return `${((Date.now() - startedAt) / 1e3).toFixed(2)}s`;
|
|
216
216
|
}
|
|
217
217
|
};
|
|
218
|
-
function stripAnsi(value) {
|
|
219
|
-
return String(value || "").replace(/\u001b\[[0-9;]*m/g, "");
|
|
220
|
-
}
|
|
221
218
|
function sleep(ms) {
|
|
222
219
|
return new Promise((resolve) => setTimeout(resolve, ms));
|
|
223
220
|
}
|
|
@@ -1868,11 +1865,7 @@ var useAndroidToolKit = () => ({
|
|
|
1868
1865
|
Constants: constants_exports,
|
|
1869
1866
|
Errors: errors_exports,
|
|
1870
1867
|
Logger,
|
|
1871
|
-
Context
|
|
1872
|
-
$Internals: {
|
|
1873
|
-
LOG_TEMPLATES,
|
|
1874
|
-
stripAnsi
|
|
1875
|
-
}
|
|
1868
|
+
Context
|
|
1876
1869
|
});
|
|
1877
1870
|
export {
|
|
1878
1871
|
useAndroidToolKit
|