Skip to content

Commit 316b696

Browse files
committed
organize import
1 parent f4e0d4f commit 316b696

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dictionary/parser.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import { memoize } from "@std/cache/memoize";
12
import { escape as escapeHtml } from "@std/html/entities";
23
import { escape as escapeRegex } from "@std/regexp/escape";
34
import nlp from "compromise/three";
@@ -31,7 +32,6 @@ import {
3132
NounForms,
3233
VerbForms,
3334
} from "./type.ts";
34-
import { memoize } from "@std/cache/memoize";
3535

3636
const RESERVED_SYMBOLS = "#()*+/:;<=>@[\\]^`{|}~";
3737
const WORDS = new RegExp(`[^${escapeRegex(RESERVED_SYMBOLS)}]`);

0 commit comments

Comments
 (0)