Skip to content

Commit ef14525

Browse files
committed
fix lint
1 parent e6c8970 commit ef14525

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/varint/i32_leb128.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { type Options, UnsizedType } from "../types/mod.ts";
22
import { CONTINUE_BIT, SEGMENT_BITS } from "./_common.ts";
33

44
export class I32Leb128 extends UnsizedType<number> {
5-
override maxSize: number = 5;
5+
override maxSize = 5;
66

77
constructor() {
88
super(1);

src/varint/i64_leb128.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ const I64_VIEW = new BigInt64Array(AB);
1010
const U64_VIEW = new BigUint64Array(AB);
1111

1212
export class I64Leb128 extends UnsizedType<bigint> {
13-
override maxSize: number = 10;
13+
override maxSize = 10;
1414

1515
constructor() {
1616
super(1);

0 commit comments

Comments
 (0)