crash-js 0.1.23 → 0.1.25
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/crash-js/fs-utils +8 -10
- package/package.json +1 -1
package/crash-js/fs-utils
CHANGED
|
@@ -190,19 +190,17 @@ function
|
|
|
190
190
|
|
|
191
191
|
function
|
|
192
192
|
_fs_worker_new(
|
|
193
|
-
|
|
193
|
+
_url) {
|
|
194
194
|
let
|
|
195
|
-
_worker
|
|
196
|
-
_url;
|
|
197
|
-
_url =
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
195
|
+
_worker;
|
|
196
|
+
// _url;
|
|
197
|
+
// _url =
|
|
198
|
+
// new URL(
|
|
199
|
+
// "fs-worker",
|
|
200
|
+
// _import_meta_url);
|
|
201
201
|
_worker =
|
|
202
202
|
new Worker(
|
|
203
|
-
|
|
204
|
-
"./fs-worker",
|
|
205
|
-
_import_meta_url);
|
|
203
|
+
"fs_worker");
|
|
206
204
|
return _crash_js_worker;
|
|
207
205
|
}
|
|
208
206
|
|