cspell-trie-lib 7.3.7 → 7.3.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +6 -6
- package/dist/lib/walker/hintedWalker.js +0 -1
- package/package.json +8 -8
package/README.md
CHANGED
|
@@ -200,12 +200,12 @@ each line can only refer to previous lines.
|
|
|
200
200
|
|
|
201
201
|
How to walk the data to see if "talks" is in it.
|
|
202
202
|
|
|
203
|
-
1.
|
|
204
|
-
1.
|
|
205
|
-
1.
|
|
206
|
-
1.
|
|
207
|
-
1.
|
|
208
|
-
1.
|
|
203
|
+
1. Start with the root at offset 8.
|
|
204
|
+
1. t found goto 7
|
|
205
|
+
1. a found goto 6
|
|
206
|
+
1. l found goto 5
|
|
207
|
+
1. k found goto 4
|
|
208
|
+
1. s found stop (goto 0 is stop).
|
|
209
209
|
|
|
210
210
|
<!---
|
|
211
211
|
cspell:word DAFSA DAWG
|
|
@@ -39,7 +39,6 @@ function* hintedWalkerNext(root, ignoreCase, hint, compoundingMethod, emitWordSe
|
|
|
39
39
|
.filter((a) => a in c)
|
|
40
40
|
.map((letter) => ({
|
|
41
41
|
letter,
|
|
42
|
-
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
|
|
43
42
|
node: c[letter],
|
|
44
43
|
hintOffset: hintOffset + 1,
|
|
45
44
|
}));
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cspell-trie-lib",
|
|
3
|
-
"version": "7.3.
|
|
3
|
+
"version": "7.3.9",
|
|
4
4
|
"description": "Trie Data Structure to support cspell.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -46,18 +46,18 @@
|
|
|
46
46
|
},
|
|
47
47
|
"homepage": "https://github.com/streetsidesoftware/cspell#readme",
|
|
48
48
|
"dependencies": {
|
|
49
|
-
"@cspell/cspell-pipe": "7.3.
|
|
50
|
-
"@cspell/cspell-types": "7.3.
|
|
49
|
+
"@cspell/cspell-pipe": "7.3.9",
|
|
50
|
+
"@cspell/cspell-types": "7.3.9",
|
|
51
51
|
"gensequence": "^6.0.0"
|
|
52
52
|
},
|
|
53
53
|
"engines": {
|
|
54
54
|
"node": ">=16"
|
|
55
55
|
},
|
|
56
56
|
"devDependencies": {
|
|
57
|
-
"@cspell/dict-en_us": "^4.3.
|
|
58
|
-
"@cspell/dict-es-es": "^2.
|
|
59
|
-
"@cspell/dict-nl-nl": "^2.
|
|
60
|
-
"import-meta-resolve": "^3.
|
|
57
|
+
"@cspell/dict-en_us": "^4.3.11",
|
|
58
|
+
"@cspell/dict-es-es": "^2.3.0",
|
|
59
|
+
"@cspell/dict-nl-nl": "^2.3.0",
|
|
60
|
+
"import-meta-resolve": "^3.1.1"
|
|
61
61
|
},
|
|
62
|
-
"gitHead": "
|
|
62
|
+
"gitHead": "77c7fb3ffd80a626ec07d704cefcaa21d62fd460"
|
|
63
63
|
}
|