Skip to content

Commit 948f487

Browse files
committed
remove unused import
1 parent e99af8d commit 948f487

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/parser/parser_lib.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
import { assertGreater } from "@std/assert/greater";
22
import { MemoizationCacheResult, memoize } from "@std/cache/memoize";
33
import { ArrayResult, ArrayResultError } from "../array_result.ts";
4-
import { assert } from "@std/assert/assert";
5-
import { assertNotEquals } from "@std/assert/not-equals";
64

75
type ParserResult<T> = ArrayResult<Readonly<{ value: T; length: number }>>;
86
type InnerParser<T> = (input: number) => ParserResult<T>;

0 commit comments

Comments
 (0)