Skip to content

Commit

Permalink
fix eslint warngin
Browse files Browse the repository at this point in the history
  • Loading branch information
caiiiycuk committed Mar 20, 2024
1 parent 801dd8d commit d14bd1c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ws/ws-transport-layer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export class WsTransportLayer implements TransportLayer {
private cycles = 0;
private sockdrive = createSockdrive(this.onSockdriveOpen.bind(this), this.onSockdriveError.bind(this));

private handler: MessageHandler = () => {/**/ };
private handler: MessageHandler = () => {/**/};

private writeUint32(container: Uint8Array, value: number, offset: number) {
container[offset] = value & 0xFF;
Expand Down

0 comments on commit d14bd1c

Please sign in to comment.