Skip to content

Commit 2327dde

Browse files
committed
format
1 parent 68702c2 commit 2327dde

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/parser/parser_lib.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,8 +85,7 @@ export class Parser<T> {
8585
}
8686
then<U>(mapper: (value: T) => Parser<U>): Parser<U> {
8787
return new Parser((input) =>
88-
this
89-
.rawParser(input)
88+
this.rawParser(input)
9089
.flatMap(({ value, length }) =>
9190
mapper(value)
9291
.rawParser({

0 commit comments

Comments
 (0)