Appease the linter

This commit is contained in:
Johannes Marbach 2023-11-18 21:37:49 +01:00
parent 980633a7f5
commit e35b2135b4
3 changed files with 12 additions and 3 deletions

View file

@ -15,5 +15,8 @@ limitations under the License.
*/
export default function factory(options?: WorkerOptions | undefined): Worker {
return new Worker(/* webpackChunkName: "blurhash.worker" */ new URL("./blurhash.worker.ts", import.meta.url), options);
return new Worker(
/* webpackChunkName: "blurhash.worker" */ new URL("./blurhash.worker.ts", import.meta.url),
options,
);
}

View file

@ -15,5 +15,8 @@ limitations under the License.
*/
export default function factory(options?: WorkerOptions | undefined): Worker {
return new Worker(/* webpackChunkName: "indexeddb.worker" */ new URL("./indexeddb.worker.ts", import.meta.url), options);
return new Worker(
/* webpackChunkName: "indexeddb.worker" */ new URL("./indexeddb.worker.ts", import.meta.url),
options,
);
}

View file

@ -15,5 +15,8 @@ limitations under the License.
*/
export default function factory(options?: WorkerOptions | undefined): Worker {
return new Worker(/* webpackChunkName: "playback.worker" */ new URL("./playback.worker.ts", import.meta.url), options);
return new Worker(
/* webpackChunkName: "playback.worker" */ new URL("./playback.worker.ts", import.meta.url),
options,
);
}