Appease the linter
This commit is contained in:
parent
980633a7f5
commit
e35b2135b4
3 changed files with 12 additions and 3 deletions
|
@ -15,5 +15,8 @@ limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
export default function factory(options?: WorkerOptions | undefined): Worker {
|
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,
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
|
@ -15,5 +15,8 @@ limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
export default function factory(options?: WorkerOptions | undefined): Worker {
|
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,
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
|
@ -15,5 +15,8 @@ limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
export default function factory(options?: WorkerOptions | undefined): Worker {
|
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,
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue