We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f4e0d4f commit 316b696Copy full SHA for 316b696
dictionary/parser.ts
@@ -1,3 +1,4 @@
1
+import { memoize } from "@std/cache/memoize";
2
import { escape as escapeHtml } from "@std/html/entities";
3
import { escape as escapeRegex } from "@std/regexp/escape";
4
import nlp from "compromise/three";
@@ -31,7 +32,6 @@ import {
31
32
NounForms,
33
VerbForms,
34
} from "./type.ts";
-import { memoize } from "@std/cache/memoize";
35
36
const RESERVED_SYMBOLS = "#()*+/:;<=>@[\\]^`{|}~";
37
const WORDS = new RegExp(`[^${escapeRegex(RESERVED_SYMBOLS)}]`);
0 commit comments