Skip to content

Commit 6dc6b65

Browse files
committed
update dependencies
1 parent c2b4f1e commit 6dc6b65

File tree

3 files changed

+28
-25
lines changed

3 files changed

+28
-25
lines changed

deno.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,14 +53,14 @@
5353
},
5454
"imports": {
5555
"@luca/esbuild-deno-loader": "jsr:@luca/esbuild-deno-loader@^0.11.1",
56-
"@std/assert": "jsr:@std/assert@^1.0.11",
57-
"@std/async": "jsr:@std/async@^1.0.11",
58-
"@std/cache": "jsr:@std/cache@^0.1.3",
56+
"@std/assert": "jsr:@std/assert@^1.0.12",
57+
"@std/async": "jsr:@std/async@^1.0.12",
58+
"@std/cache": "jsr:@std/cache@^0.2.0",
5959
"@std/collections": "jsr:@std/collections@^1.0.10",
6060
"@std/html": "jsr:@std/html@^1.0.3",
6161
"@std/random": "jsr:@std/random@^0.1.0",
6262
"@std/regexp": "jsr:@std/regexp@^1.0.1",
63-
"@std/text": "jsr:@std/text@^1.0.11",
63+
"@std/text": "jsr:@std/text@^1.0.12",
6464
"compromise": "npm:compromise@^14.14.3",
6565
"esbuild": "npm:esbuild@^0.25.1"
6666
}

deno.lock

Lines changed: 23 additions & 20 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/parser/parser_lib.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export class Parser<T> {
1414
constructor(parser: (src: string) => ParserResult<T>) {
1515
this.unmemoizedParser = parser;
1616
if (Parser.cache != null) {
17-
const cache = new Map<string, ParserResult<T>>();
17+
const cache = new Map();
1818
Parser.addToCache(cache);
1919
this.rawParser = memoize(this.unmemoizedParser, { cache });
2020
} else {

0 commit comments

Comments
 (0)