Skip to content

Commit 1f32358

Browse files
committed
fix: remove unnecessary null guard
1 parent f443465 commit 1f32358

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/binary_parser.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -702,7 +702,7 @@ export class Parser {
702702
);
703703
}
704704

705-
return this.setNextParser("nest", varName as string, options || {});
705+
return this.setNextParser("nest", varName as string, options);
706706
}
707707

708708
pointer(varName: string, options: ParserOptions): this {

0 commit comments

Comments
 (0)