Skip to content

Commit

Permalink
Linting
Browse files Browse the repository at this point in the history
  • Loading branch information
martinRenou committed Sep 9, 2024
1 parent 345226a commit c2e46c0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/web_worker_kernel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,8 @@ export class WebWorkerKernel implements IKernel {
let remote: IXeusWorkerKernel | Remote<IXeusWorkerKernel>;
if (crossOriginIsolated) {
remote = coincident(this._worker) as IXeusWorkerKernel;
remote.processWorkerMessage = this._processCoincidentWorkerMessage.bind(this);
remote.processWorkerMessage =
this._processCoincidentWorkerMessage.bind(this);
// The coincident worker uses its own filesystem API:
(remote.processDriveRequest as any) = async <T extends TDriveMethod>(
data: TDriveRequest<T>
Expand Down

0 comments on commit c2e46c0

Please sign in to comment.