cmpstr 2.0.2 → 3.0.0
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/LICENSE +21 -21
- package/README.md +75 -499
- package/dist/CmpStr.esm.js +4863 -0
- package/dist/CmpStr.esm.js.map +1 -0
- package/dist/CmpStr.esm.min.js +8 -0
- package/dist/CmpStr.esm.min.js.map +1 -0
- package/dist/CmpStr.umd.js +4875 -0
- package/dist/CmpStr.umd.js.map +1 -0
- package/dist/CmpStr.umd.min.js +8 -0
- package/dist/CmpStr.umd.min.js.map +1 -0
- package/dist/cjs/CmpStr.js +663 -0
- package/dist/cjs/CmpStr.js.map +1 -0
- package/dist/cjs/CmpStrAsync.js +336 -0
- package/dist/cjs/CmpStrAsync.js.map +1 -0
- package/dist/cjs/index.js +15 -0
- package/dist/cjs/index.js.map +1 -0
- package/dist/cjs/metric/Cosine.js +101 -0
- package/dist/cjs/metric/Cosine.js.map +1 -0
- package/dist/cjs/metric/DamerauLevenshtein.js +110 -0
- package/dist/cjs/metric/DamerauLevenshtein.js.map +1 -0
- package/dist/cjs/metric/DiceSorensen.js +91 -0
- package/dist/cjs/metric/DiceSorensen.js.map +1 -0
- package/dist/cjs/metric/Hamming.js +82 -0
- package/dist/cjs/metric/Hamming.js.map +1 -0
- package/dist/cjs/metric/Jaccard.js +76 -0
- package/dist/cjs/metric/Jaccard.js.map +1 -0
- package/dist/cjs/metric/JaroWinkler.js +114 -0
- package/dist/cjs/metric/JaroWinkler.js.map +1 -0
- package/dist/cjs/metric/LCS.js +89 -0
- package/dist/cjs/metric/LCS.js.map +1 -0
- package/dist/cjs/metric/Levenshtein.js +94 -0
- package/dist/cjs/metric/Levenshtein.js.map +1 -0
- package/dist/cjs/metric/Metric.js +445 -0
- package/dist/cjs/metric/Metric.js.map +1 -0
- package/dist/cjs/metric/NeedlemanWunsch.js +95 -0
- package/dist/cjs/metric/NeedlemanWunsch.js.map +1 -0
- package/dist/cjs/metric/SmithWaterman.js +98 -0
- package/dist/cjs/metric/SmithWaterman.js.map +1 -0
- package/dist/cjs/metric/qGram.js +91 -0
- package/dist/cjs/metric/qGram.js.map +1 -0
- package/dist/cjs/phonetic/Cologne.js +112 -0
- package/dist/cjs/phonetic/Cologne.js.map +1 -0
- package/dist/cjs/phonetic/Metaphone.js +172 -0
- package/dist/cjs/phonetic/Metaphone.js.map +1 -0
- package/dist/cjs/phonetic/Phonetic.js +413 -0
- package/dist/cjs/phonetic/Phonetic.js.map +1 -0
- package/dist/cjs/phonetic/Soundex.js +135 -0
- package/dist/cjs/phonetic/Soundex.js.map +1 -0
- package/dist/cjs/utils/DeepMerge.js +144 -0
- package/dist/cjs/utils/DeepMerge.js.map +1 -0
- package/dist/cjs/utils/DiffChecker.js +500 -0
- package/dist/cjs/utils/DiffChecker.js.map +1 -0
- package/dist/cjs/utils/Filter.js +189 -0
- package/dist/cjs/utils/Filter.js.map +1 -0
- package/dist/cjs/utils/HashTable.js +175 -0
- package/dist/cjs/utils/HashTable.js.map +1 -0
- package/dist/cjs/utils/Normalizer.js +144 -0
- package/dist/cjs/utils/Normalizer.js.map +1 -0
- package/dist/cjs/utils/Pool.js +196 -0
- package/dist/cjs/utils/Pool.js.map +1 -0
- package/dist/cjs/utils/Profiler.js +229 -0
- package/dist/cjs/utils/Profiler.js.map +1 -0
- package/dist/cjs/utils/Registry.js +148 -0
- package/dist/cjs/utils/Registry.js.map +1 -0
- package/dist/cjs/utils/TextAnalyzer.js +358 -0
- package/dist/cjs/utils/TextAnalyzer.js.map +1 -0
- package/dist/esm/CmpStr.js +662 -0
- package/dist/esm/CmpStr.js.map +1 -0
- package/dist/esm/CmpStrAsync.js +331 -0
- package/dist/esm/CmpStrAsync.js.map +1 -0
- package/dist/esm/index.js +7 -0
- package/dist/esm/index.js.map +1 -0
- package/dist/esm/metric/Cosine.js +99 -0
- package/dist/esm/metric/Cosine.js.map +1 -0
- package/dist/esm/metric/DamerauLevenshtein.js +108 -0
- package/dist/esm/metric/DamerauLevenshtein.js.map +1 -0
- package/dist/esm/metric/DiceSorensen.js +89 -0
- package/dist/esm/metric/DiceSorensen.js.map +1 -0
- package/dist/esm/metric/Hamming.js +77 -0
- package/dist/esm/metric/Hamming.js.map +1 -0
- package/dist/esm/metric/Jaccard.js +74 -0
- package/dist/esm/metric/Jaccard.js.map +1 -0
- package/dist/esm/metric/JaroWinkler.js +112 -0
- package/dist/esm/metric/JaroWinkler.js.map +1 -0
- package/dist/esm/metric/LCS.js +87 -0
- package/dist/esm/metric/LCS.js.map +1 -0
- package/dist/esm/metric/Levenshtein.js +92 -0
- package/dist/esm/metric/Levenshtein.js.map +1 -0
- package/dist/esm/metric/Metric.js +442 -0
- package/dist/esm/metric/Metric.js.map +1 -0
- package/dist/esm/metric/NeedlemanWunsch.js +93 -0
- package/dist/esm/metric/NeedlemanWunsch.js.map +1 -0
- package/dist/esm/metric/SmithWaterman.js +96 -0
- package/dist/esm/metric/SmithWaterman.js.map +1 -0
- package/dist/esm/metric/qGram.js +89 -0
- package/dist/esm/metric/qGram.js.map +1 -0
- package/dist/esm/phonetic/Cologne.js +114 -0
- package/dist/esm/phonetic/Cologne.js.map +1 -0
- package/dist/esm/phonetic/Metaphone.js +174 -0
- package/dist/esm/phonetic/Metaphone.js.map +1 -0
- package/dist/esm/phonetic/Phonetic.js +409 -0
- package/dist/esm/phonetic/Phonetic.js.map +1 -0
- package/dist/esm/phonetic/Soundex.js +137 -0
- package/dist/esm/phonetic/Soundex.js.map +1 -0
- package/dist/esm/utils/DeepMerge.js +139 -0
- package/dist/esm/utils/DeepMerge.js.map +1 -0
- package/dist/esm/utils/DiffChecker.js +498 -0
- package/dist/esm/utils/DiffChecker.js.map +1 -0
- package/dist/esm/utils/Filter.js +187 -0
- package/dist/esm/utils/Filter.js.map +1 -0
- package/dist/esm/utils/HashTable.js +173 -0
- package/dist/esm/utils/HashTable.js.map +1 -0
- package/dist/esm/utils/Normalizer.js +142 -0
- package/dist/esm/utils/Normalizer.js.map +1 -0
- package/dist/esm/utils/Pool.js +194 -0
- package/dist/esm/utils/Pool.js.map +1 -0
- package/dist/esm/utils/Profiler.js +227 -0
- package/dist/esm/utils/Profiler.js.map +1 -0
- package/dist/esm/utils/Registry.js +142 -0
- package/dist/esm/utils/Registry.js.map +1 -0
- package/dist/esm/utils/TextAnalyzer.js +356 -0
- package/dist/esm/utils/TextAnalyzer.js.map +1 -0
- package/dist/types/CmpStr.d.ts +472 -0
- package/dist/types/CmpStrAsync.d.ts +233 -0
- package/dist/types/index.d.ts +51 -0
- package/dist/types/metric/Cosine.d.ts +57 -0
- package/dist/types/metric/DamerauLevenshtein.d.ts +50 -0
- package/dist/types/metric/DiceSorensen.d.ts +57 -0
- package/dist/types/metric/Hamming.d.ts +49 -0
- package/dist/types/metric/Jaccard.d.ts +48 -0
- package/dist/types/metric/JaroWinkler.d.ts +50 -0
- package/dist/types/metric/LCS.d.ts +50 -0
- package/dist/types/metric/Levenshtein.d.ts +50 -0
- package/dist/types/metric/Metric.d.ts +261 -0
- package/dist/types/metric/NeedlemanWunsch.d.ts +47 -0
- package/dist/types/metric/SmithWaterman.d.ts +48 -0
- package/dist/types/metric/index.d.ts +41 -0
- package/dist/types/metric/qGram.d.ts +56 -0
- package/dist/types/phonetic/Cologne.d.ts +46 -0
- package/dist/types/phonetic/Metaphone.d.ts +50 -0
- package/dist/types/phonetic/Phonetic.d.ts +189 -0
- package/dist/types/phonetic/Soundex.d.ts +49 -0
- package/dist/types/phonetic/index.d.ts +30 -0
- package/dist/types/utils/DeepMerge.d.ts +70 -0
- package/dist/types/utils/DiffChecker.d.ts +137 -0
- package/dist/types/utils/Filter.d.ts +97 -0
- package/dist/types/utils/HashTable.d.ts +86 -0
- package/dist/types/utils/Normalizer.d.ts +76 -0
- package/dist/types/utils/Pool.d.ts +63 -0
- package/dist/types/utils/Profiler.d.ts +129 -0
- package/dist/types/utils/Registry.d.ts +57 -0
- package/dist/types/utils/TextAnalyzer.d.ts +199 -0
- package/dist/types/utils/Types.d.ts +313 -0
- package/package.json +62 -49
- package/src/CmpStr.d.ts +0 -70
- package/src/CmpStr.js +0 -912
- package/src/CmpStrAsync.d.ts +0 -19
- package/src/CmpStrAsync.js +0 -204
- package/src/algorithms/cosine.js +0 -86
- package/src/algorithms/damerau.js +0 -78
- package/src/algorithms/dice.js +0 -65
- package/src/algorithms/hamming.js +0 -44
- package/src/algorithms/jaccard.js +0 -34
- package/src/algorithms/jaroWinkler.js +0 -106
- package/src/algorithms/lcs.js +0 -58
- package/src/algorithms/levenshtein.js +0 -70
- package/src/algorithms/needlemanWunsch.js +0 -72
- package/src/algorithms/qGram.js +0 -63
- package/src/algorithms/smithWaterman.js +0 -78
- package/src/algorithms/soundex.js +0 -152
- package/src/index.d.ts +0 -3
- package/src/index.js +0 -47
package/LICENSE
CHANGED
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
MIT License
|
|
2
|
-
|
|
3
|
-
Copyright (c) 2025 Paul Köhler (komed3)
|
|
4
|
-
|
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
-
in the Software without restriction, including without limitation the rights
|
|
8
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
-
furnished to do so, subject to the following conditions:
|
|
11
|
-
|
|
12
|
-
The above copyright notice and this permission notice shall be included in all
|
|
13
|
-
copies or substantial portions of the Software.
|
|
14
|
-
|
|
15
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
-
SOFTWARE.
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2023-2025 Paul Köhler (komed3)
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
CHANGED
|
@@ -1,499 +1,75 @@
|
|
|
1
|
-
# CmpStr
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
Gets the default normalization flags.
|
|
78
|
-
|
|
79
|
-
#### `clearCache()`
|
|
80
|
-
|
|
81
|
-
Clears the normalization cache.
|
|
82
|
-
|
|
83
|
-
### Algorithms
|
|
84
|
-
|
|
85
|
-
#### `listAlgo( [ loadedOnly = false ] )`
|
|
86
|
-
|
|
87
|
-
List all registered similarity algorithms.
|
|
88
|
-
|
|
89
|
-
Parameters:
|
|
90
|
-
|
|
91
|
-
`<Boolean> loadedOnly` – it true, only loaded algorithm names are returned
|
|
92
|
-
|
|
93
|
-
#### `isAlgo( algo )`
|
|
94
|
-
|
|
95
|
-
Checks if an algorithm is registered. Returns `true` if so, `false` otherwise.
|
|
96
|
-
|
|
97
|
-
Parameters:
|
|
98
|
-
|
|
99
|
-
`<String> algo` – name of the algorithm
|
|
100
|
-
|
|
101
|
-
#### `setAlgo( algo )`
|
|
102
|
-
|
|
103
|
-
Sets the current algorithm to use for similarity calculations.
|
|
104
|
-
|
|
105
|
-
Allowed options for build-in althorithms are `cosine`, `damerau`, `dice`, `hamming`, `jaccard`, `jaro`, `lcs`, `levenshtein`, `needlemanWunsch`, `qGram`, `smithWaterman` and `soundex`.
|
|
106
|
-
|
|
107
|
-
Parameters:
|
|
108
|
-
|
|
109
|
-
`<String> algo` – name of the algorithm
|
|
110
|
-
|
|
111
|
-
#### `getAlgo()`
|
|
112
|
-
|
|
113
|
-
Gets the current algorithm to use for similarity calculations.
|
|
114
|
-
|
|
115
|
-
#### `addAlgo( algo, callback [, useIt = true ] )`
|
|
116
|
-
|
|
117
|
-
Adding a new similarity algorithm by using the `addAlgo()` method passing the name and a callback function, that must accept at least two strings and return a number. If `useIt` is `true`, the new algorithm will automatically be set as the current one.
|
|
118
|
-
|
|
119
|
-
Parameters:
|
|
120
|
-
|
|
121
|
-
`<String> algo` – name of the algorithm
|
|
122
|
-
`<Function> callback` – callback function implementing the algorithm
|
|
123
|
-
`<Boolean> useIt` – whether to set this algorithm as the current one
|
|
124
|
-
|
|
125
|
-
Example:
|
|
126
|
-
|
|
127
|
-
```js
|
|
128
|
-
const cmp = new CmpStr();
|
|
129
|
-
|
|
130
|
-
cmp.addAlgo( 'customAlgo', ( a, b ) => {
|
|
131
|
-
return a === b ? 1 : 0;
|
|
132
|
-
} );
|
|
133
|
-
|
|
134
|
-
console.log( cmp.compare( 'customAlgo', 'hello', 'hello' ) );
|
|
135
|
-
// Output: 1
|
|
136
|
-
```
|
|
137
|
-
|
|
138
|
-
#### `rmvAlgo( algo )`
|
|
139
|
-
|
|
140
|
-
Removing a registered similarity algorithm.
|
|
141
|
-
|
|
142
|
-
Parameters:
|
|
143
|
-
|
|
144
|
-
`<String> algo` – name of the algorithm
|
|
145
|
-
|
|
146
|
-
### Filters
|
|
147
|
-
|
|
148
|
-
#### `listFilter()`
|
|
149
|
-
|
|
150
|
-
List all added filters.
|
|
151
|
-
|
|
152
|
-
#### `addFilter( name, callback [, priority = 10 ] )`
|
|
153
|
-
|
|
154
|
-
Adds a custom normalization filter. Needs to be passed a unique name and callback function accepting a string and returns a normalized one. Prioritizing filters by setting higher priority (default is `10`).
|
|
155
|
-
|
|
156
|
-
Parameters:
|
|
157
|
-
|
|
158
|
-
`<String> name` – filter name
|
|
159
|
-
`<Function> callback` – callback function implementing the filter
|
|
160
|
-
`<Int> priority` – priority of the filter
|
|
161
|
-
|
|
162
|
-
Example:
|
|
163
|
-
|
|
164
|
-
```js
|
|
165
|
-
const cmp = new CmpStr();
|
|
166
|
-
|
|
167
|
-
cmp.addFilter( 'prefix', ( str ) => `prefix_${str}` );
|
|
168
|
-
```
|
|
169
|
-
|
|
170
|
-
#### `rmvFilter( name )`
|
|
171
|
-
|
|
172
|
-
Removes a custom normalization filter.
|
|
173
|
-
|
|
174
|
-
Parameters:
|
|
175
|
-
|
|
176
|
-
`<String> name` – filter name
|
|
177
|
-
|
|
178
|
-
#### `pauseFilter( name )`
|
|
179
|
-
|
|
180
|
-
Pauses a custom normalization filter.
|
|
181
|
-
|
|
182
|
-
Parameters:
|
|
183
|
-
|
|
184
|
-
`<String> name` – filter name
|
|
185
|
-
|
|
186
|
-
#### `resumeFilter( name )`
|
|
187
|
-
|
|
188
|
-
Resumes a custom normalization filter.
|
|
189
|
-
|
|
190
|
-
Parameters:
|
|
191
|
-
|
|
192
|
-
`<String> name` – filter name
|
|
193
|
-
|
|
194
|
-
#### `clearFilter( name )`
|
|
195
|
-
|
|
196
|
-
Clears normalization filters (removing all of them).
|
|
197
|
-
|
|
198
|
-
### Similarity Comparison
|
|
199
|
-
|
|
200
|
-
#### `compare( algo, a, b [, config = {} ] )`
|
|
201
|
-
|
|
202
|
-
Compares two strings using the specified algorithm. The method returns either the similarity score as a floating point number between 0 and 1 or raw output, if the algorithm supports it and the user passes `raw=true` through the config options.
|
|
203
|
-
|
|
204
|
-
Parameters:
|
|
205
|
-
|
|
206
|
-
`<String> algo` – name of the algorithm
|
|
207
|
-
`<String> a` – first string
|
|
208
|
-
`<String> b` – second string
|
|
209
|
-
`<Object> config` – configuration object
|
|
210
|
-
|
|
211
|
-
Example:
|
|
212
|
-
|
|
213
|
-
```js
|
|
214
|
-
const cmp = new CmpStr();
|
|
215
|
-
|
|
216
|
-
console.log( cmp.compare( 'levenshtein', 'hello', 'hallo' ) );
|
|
217
|
-
// Output: 0.8
|
|
218
|
-
```
|
|
219
|
-
|
|
220
|
-
#### `test( str [, config = {} ] )`
|
|
221
|
-
|
|
222
|
-
Tests the similarity between the base string and a given target string. Returns the same as ``compare``.
|
|
223
|
-
|
|
224
|
-
Parameters:
|
|
225
|
-
|
|
226
|
-
`<String> str` – target string
|
|
227
|
-
`<Object> config` – configuration object
|
|
228
|
-
|
|
229
|
-
Example:
|
|
230
|
-
|
|
231
|
-
```js
|
|
232
|
-
const cmp = new CmpStr( 'levenshtein', 'hello' );
|
|
233
|
-
|
|
234
|
-
console.log( cmp.test( 'hallo' ) );
|
|
235
|
-
// Output: 0.8
|
|
236
|
-
```
|
|
237
|
-
|
|
238
|
-
#### `batchTest( arr [, config = {} ] )`
|
|
239
|
-
|
|
240
|
-
Tests the similarity of multiple strings against the base string. Returns an array of objects with the target string and either the similarity score as a floating point number between 0 and 1 or raw output, if the algorithm supports it and the user passes `raw=true` through the config options.
|
|
241
|
-
|
|
242
|
-
Parameters:
|
|
243
|
-
|
|
244
|
-
`<String[]> arr` – array of strings
|
|
245
|
-
`<Object> config` – configuration object
|
|
246
|
-
|
|
247
|
-
Example:
|
|
248
|
-
|
|
249
|
-
```js
|
|
250
|
-
const cmp = new CmpStr( 'levenshtein', 'hello' );
|
|
251
|
-
|
|
252
|
-
console.log( cmp.batchTest( [ 'hallo', 'hola', 'hey' ] ) );
|
|
253
|
-
// Output: [ { target: 'hallo', match: 0.8 }, { target: 'hola', match: 0.4 }, { target: 'hey', match: 0.4 } ]
|
|
254
|
-
```
|
|
255
|
-
|
|
256
|
-
#### `match( arr [, config = {} ] )`
|
|
257
|
-
|
|
258
|
-
Finds strings in an array that exceed a similarity threshold and sorts them by highest similarity. Returns an array of objects contain target string and similarity score as a floating point number between 0 and 1.
|
|
259
|
-
|
|
260
|
-
Parameters:
|
|
261
|
-
|
|
262
|
-
`<String[]> arr` – array of strings
|
|
263
|
-
`<Object> config` – configuration object
|
|
264
|
-
|
|
265
|
-
Example:
|
|
266
|
-
|
|
267
|
-
```js
|
|
268
|
-
const cmp = new CmpStr( 'levenshtein', 'hello' );
|
|
269
|
-
|
|
270
|
-
console.log( cmp.batchTest( [ 'hallo', 'hola', 'hey' ], {
|
|
271
|
-
threshold: 0.5
|
|
272
|
-
} ) );
|
|
273
|
-
// Output: [ { target: 'hallo', match: 0.8 } ]
|
|
274
|
-
```
|
|
275
|
-
|
|
276
|
-
#### `closest( arr [, config = {} ] )`
|
|
277
|
-
|
|
278
|
-
Finds the closest matching string from an array and returns them.
|
|
279
|
-
|
|
280
|
-
Parameters:
|
|
281
|
-
|
|
282
|
-
`<String[]> arr` – array of strings
|
|
283
|
-
`<Object> config` – configuration object
|
|
284
|
-
|
|
285
|
-
Example:
|
|
286
|
-
|
|
287
|
-
```js
|
|
288
|
-
const cmp = new CmpStr( 'levenshtein', 'hello' );
|
|
289
|
-
|
|
290
|
-
console.log( cmp.batchTest( [ 'hallo', 'hola', 'hey' ] ) );
|
|
291
|
-
// Output: 'hallo'
|
|
292
|
-
```
|
|
293
|
-
|
|
294
|
-
#### `similarityMatrix( algo, arr [, config = {} ] )`
|
|
295
|
-
|
|
296
|
-
Generates a similarity matrix for an array of strings. Returns an 2D array that represents the similarity matrix by floating point numbers between 0 and 1.
|
|
297
|
-
|
|
298
|
-
Parameters:
|
|
299
|
-
|
|
300
|
-
`<String> algo` – name of the algorithm
|
|
301
|
-
`<String[]> arr` – array of strings
|
|
302
|
-
`<Object> config` – configuration object
|
|
303
|
-
|
|
304
|
-
Example:
|
|
305
|
-
|
|
306
|
-
```js
|
|
307
|
-
const cmp = new CmpStr();
|
|
308
|
-
|
|
309
|
-
console.log( cmp.similarityMatrix( 'levenshtein', [
|
|
310
|
-
'hello', 'hallo', 'hola'
|
|
311
|
-
] ) );
|
|
312
|
-
// Output: [ [ 1, 0.8, 0.4 ], [ 0.8, 1, 0.4 ], [ 0.4, 0.4, 1 ] ]
|
|
313
|
-
```
|
|
314
|
-
|
|
315
|
-
## Customization
|
|
316
|
-
|
|
317
|
-
### Normalize Strings
|
|
318
|
-
|
|
319
|
-
The `CmpStr` package allows strings to be normalized before the similarity comparison. Options listed below are available for this and can either be set globally via `setFlags` or passed using the config object, which will overwrite the global flags. Flags are passed as a chained string in any order. For improved performance, normalized strings are stored in the cache, which can be freed using the `clearCache` method. Modifying custom filters automatically deletes the cache.
|
|
320
|
-
|
|
321
|
-
#### Supported Flags
|
|
322
|
-
|
|
323
|
-
`s` – remove special chars
|
|
324
|
-
`w` – collapse whitespaces
|
|
325
|
-
`r` – remove repeated chars
|
|
326
|
-
`k` – keep only letters
|
|
327
|
-
`n` – ignore numbers
|
|
328
|
-
`t` – trim whitespaces
|
|
329
|
-
`i` – case insensitivity
|
|
330
|
-
`d` – decompose unicode
|
|
331
|
-
`u` – normalize unicode
|
|
332
|
-
|
|
333
|
-
#### `normalize( input [, flags = '' ] )`
|
|
334
|
-
|
|
335
|
-
The method for normalizing strings can also be called on its own, without comparing the similarity of two strings. This also applies all filters and reads or writes to the cache. This can be helpful if certain strings should be saved beforehand or different normalization options want to be tested.
|
|
336
|
-
|
|
337
|
-
Parameters:
|
|
338
|
-
|
|
339
|
-
`<String|String[]> input` – single string or array of strings to normalize
|
|
340
|
-
`<String> flags` normalization flags
|
|
341
|
-
|
|
342
|
-
Example:
|
|
343
|
-
|
|
344
|
-
```js
|
|
345
|
-
const cmp = new CmpStr();
|
|
346
|
-
|
|
347
|
-
console.log( cmp.normalize( ' he123LLo ', 'nti' ) );
|
|
348
|
-
// Output: hello
|
|
349
|
-
|
|
350
|
-
console.log( cmp.normalize( [ 'Hello World!', 'CmpStr 123' ], 'nwti' ) );
|
|
351
|
-
// Output: [ 'hello world!', 'cmpstr' ]
|
|
352
|
-
```
|
|
353
|
-
|
|
354
|
-
### Configuration Object
|
|
355
|
-
|
|
356
|
-
An additional object with optional parameters can be passed to all comparison methods (e.g. `test`, `match`, `closest` etc.) and their asynchronous pendants. This object includes the ability to pass `flags` for normalization to all methods, as well as the `threshold` parameter for `match` and `matchAsync`.
|
|
357
|
-
|
|
358
|
-
It also contains `options` as an object of key-value pairs that are passed to the comparison algorithm. Which additional arguments an algorithm accepts depends on the function exported from the module itself. Further down in this documentation, the various parameters for each algorithm are listed.
|
|
359
|
-
|
|
360
|
-
Global config options:
|
|
361
|
-
|
|
362
|
-
`<String> flags` – normalization flags
|
|
363
|
-
`<Number> threshold` – similarity threshold between 0 and 1
|
|
364
|
-
`<Object> options` – options passed to the algorithm
|
|
365
|
-
|
|
366
|
-
Example:
|
|
367
|
-
|
|
368
|
-
```js
|
|
369
|
-
const cmp = new CmpStr( 'smithWaterman', 'alignment' );
|
|
370
|
-
|
|
371
|
-
console.log( cmp.match( [
|
|
372
|
-
' align ment', 'ali gnm ent ', ' alIGNMent'
|
|
373
|
-
], {
|
|
374
|
-
flags: 'it',
|
|
375
|
-
threshold: 0.8,
|
|
376
|
-
options: {
|
|
377
|
-
mismatch: -4,
|
|
378
|
-
gap: -2
|
|
379
|
-
}
|
|
380
|
-
} ) );
|
|
381
|
-
// Output: [ { target: ' alIGNMent', match: 1 }, { target: ' align ment', match: 0.8... }
|
|
382
|
-
]
|
|
383
|
-
```
|
|
384
|
-
|
|
385
|
-
## Asynchronous Support
|
|
386
|
-
|
|
387
|
-
The `CmpStrAsync` class provides an asynchronous wrapper for all comparison methods as well as the string normalization function. It is ideal for large datasets or non-blocking workflows.
|
|
388
|
-
|
|
389
|
-
The asynchronous class supports the methods `normalizeAsync`, `compareAsync`, `testAsync`, `batchTestAsync`, `matchAsync`, `closestAsync` and `similarityMatrixAsync`. Each of these methods returns a `Promise`.
|
|
390
|
-
|
|
391
|
-
For options, arguments and returned values, see the documentation above.
|
|
392
|
-
|
|
393
|
-
Example:
|
|
394
|
-
|
|
395
|
-
```js
|
|
396
|
-
const { CmpStrAsync } = require( 'cmpstr' );
|
|
397
|
-
|
|
398
|
-
const cmp = new CmpStrAsync( 'dice', 'best' );
|
|
399
|
-
|
|
400
|
-
cmp.batchTestAsync( [
|
|
401
|
-
'better', 'bestest', 'the best', 'good', ...
|
|
402
|
-
] ).then( console.log );
|
|
403
|
-
```
|
|
404
|
-
|
|
405
|
-
## Supported Algorithms
|
|
406
|
-
|
|
407
|
-
The following algorithms for similarity analysis are natively supported by the CmpStr package. Lazy-loading keeps memory consumption and loading time low, as only the algorithm intended to be used will be loaded as a module.
|
|
408
|
-
|
|
409
|
-
### Similarity Algorithms
|
|
410
|
-
|
|
411
|
-
#### Levenshtein Distance – `levenshtein`
|
|
412
|
-
|
|
413
|
-
The Levenshtein distance between two strings is the minimum number of single-character edits (i.e. insertions, deletions or substitutions) required to change one word into the other.
|
|
414
|
-
|
|
415
|
-
Options:
|
|
416
|
-
|
|
417
|
-
`<Boolean> raw` – if true the raw distance is returned
|
|
418
|
-
|
|
419
|
-
#### Damerau-Levenshtein – `damerau`
|
|
420
|
-
|
|
421
|
-
The Damerau-Levenshtein distance differs from the classical Levenshtein distance by including transpositions among its allowable operations in addition to the three classical single-character edit operations (insertions, deletions and substitutions). Useful for correcting typos.
|
|
422
|
-
|
|
423
|
-
Options:
|
|
424
|
-
|
|
425
|
-
`<Boolean> raw` – if true the raw distance is returned
|
|
426
|
-
|
|
427
|
-
#### Jaro-Winkler – `jaro`
|
|
428
|
-
|
|
429
|
-
Jaro-Winkler is a string similarity metric that gives more weight to matching characters at the start of the strings.
|
|
430
|
-
|
|
431
|
-
Options:
|
|
432
|
-
|
|
433
|
-
`<Boolean> raw` – if true the raw distance is returned
|
|
434
|
-
|
|
435
|
-
#### Cosine Similarity – `cosine`
|
|
436
|
-
|
|
437
|
-
Cosine similarity is a measure how similar two vectors are. It's often used in text analysis to compare texts based on the words they contain.
|
|
438
|
-
|
|
439
|
-
Options:
|
|
440
|
-
|
|
441
|
-
`<String> delimiter` – term delimiter
|
|
442
|
-
|
|
443
|
-
#### Dice Coefficient – `dice`
|
|
444
|
-
|
|
445
|
-
The Dice-Sørensen index equals twice the number of elements common to both sets divided by the sum of the number of elements in each set. Equivalently the index is the size of the intersection as a fraction of the average size of the two sets.
|
|
446
|
-
|
|
447
|
-
#### Jaccard Index – `jaccard`
|
|
448
|
-
|
|
449
|
-
The Jaccard Index measures the similarity between two sets by dividing the size of their intersection by the size of their union.
|
|
450
|
-
|
|
451
|
-
#### Hamming Distance – `hamming`
|
|
452
|
-
|
|
453
|
-
The Hamming distance between two equal-length strings of symbols is the number of positions at which the corresponding symbols are different.
|
|
454
|
-
|
|
455
|
-
#### Longest Common Subsequence – `lcs`
|
|
456
|
-
|
|
457
|
-
LCS measures the length of the longest subsequence common to both strings.
|
|
458
|
-
|
|
459
|
-
#### Needleman-Wunsch – `needlemanWunsch`
|
|
460
|
-
|
|
461
|
-
The Needleman-Wunsch algorithm performs global alignment, aligning two strings entirely, including gaps. It is commonly used in bioinformatics.
|
|
462
|
-
|
|
463
|
-
Options:
|
|
464
|
-
|
|
465
|
-
`<Number> match` – score for a match
|
|
466
|
-
`<Number> mismatch` – penalty for a mismatch
|
|
467
|
-
`<Number> gap` – penalty for a gap
|
|
468
|
-
|
|
469
|
-
#### Smith-Waterman – `smithWaterman`
|
|
470
|
-
|
|
471
|
-
The Smith-Waterman algorithm performs local alignment, finding the best matching subsequence between two strings. It is commonly used in bioinformatics.
|
|
472
|
-
|
|
473
|
-
Options:
|
|
474
|
-
|
|
475
|
-
`<Number> match` – score for a match
|
|
476
|
-
`<Number> mismatch` – penalty for a mismatch
|
|
477
|
-
`<Number> gap` – penalty for a gap
|
|
478
|
-
|
|
479
|
-
#### q-Gram – `qGram`
|
|
480
|
-
|
|
481
|
-
Q-gram similarity is a string-matching algorithm that compares two strings by breaking them into substrings of length Q. It's used to determine how similar the two strings are.
|
|
482
|
-
|
|
483
|
-
Options:
|
|
484
|
-
|
|
485
|
-
`<Int> q` length of substrings
|
|
486
|
-
|
|
487
|
-
### Phonetic Algorithms
|
|
488
|
-
|
|
489
|
-
#### Soundex – `soundex`
|
|
490
|
-
|
|
491
|
-
The Soundex algorithm generates a phonetic representation of a string based on how it sounds. It supports predefined setups for English and German and allows users to provide custom options.
|
|
492
|
-
|
|
493
|
-
Options:
|
|
494
|
-
|
|
495
|
-
`<String> lang` – language code for predefined setups (e.g., `en`, `de`)
|
|
496
|
-
`<Boolean> raw` – if true, returns the raw sound index codes
|
|
497
|
-
`<Object> mapping` – custom phonetic mapping (overrides predefined)
|
|
498
|
-
`<String> exclude` – characters to exclude from the input (overrides predefined)
|
|
499
|
-
`<Number> maxLength` – maximum length of the phonetic code
|
|
1
|
+
# CmpStr - Modern String Similarity Package
|
|
2
|
+
|
|
3
|
+
[](LICENSE)
|
|
4
|
+
[](https://github.com/komed3/cmpstr/wiki)
|
|
5
|
+
[]()
|
|
6
|
+
[](https://npmjs.com/package/cmpstr)
|
|
7
|
+
[](https://bundlephobia.com/package/cmpstr)
|
|
8
|
+
[](https://npmpackage.info/package/cmpstr?t=downloads)
|
|
9
|
+
[](https://github.com/komed3/cmpstr/actions/workflows/build.yml)
|
|
10
|
+
[]()
|
|
11
|
+
[]()
|
|
12
|
+
|
|
13
|
+
**CmpStr** is a TypeScript library for advanced string comparison, similarity measurement, phonetic indexing, and text analysis. It includes implementations of several established algorithms such as Levenshtein, Dice–Sørensen, Damerau–Levenshtein and Soundex. The library has no external dependencies and allows for the integration of custom metrics, phonetic mappings, and normalization filters.
|
|
14
|
+
|
|
15
|
+
CmpStr provides a unified API for single, batch and pairwise operations. It is suitable for a range of use cases in application development and research. The package includes support for both ESM and CommonJS environments, TypeScript type declarations and a browser-compatible JavaScript bundle.
|
|
16
|
+
|
|
17
|
+
Originally launched in 2023 with a minimal feature set, the library was redesigned in 2025 to support a broader set of algorithms and processing features. The current version offers asynchronous operation, configurable normalization and filtering pipelines, phonetic search functionality, and basic tools for string differencing.
|
|
18
|
+
|
|
19
|
+
**Key Features**
|
|
20
|
+
|
|
21
|
+
- Unified API for string similarity, distance measurement and matching
|
|
22
|
+
- Modular metric system with support for algorithms such as Levenshtein, Jaro-Winkler, Cosine etc.
|
|
23
|
+
- Integrated phonetic algorithms (e.g., Soundex, Metaphone) with configurable registry
|
|
24
|
+
- Normalization and filtering pipeline for consistent input processing
|
|
25
|
+
- Single, batch and pairwise comparisons with structured, type-safe results
|
|
26
|
+
- Phonetic-aware search and comparison
|
|
27
|
+
- Utilities for text structure and readability analysis (e.g., syllables, word statistics)
|
|
28
|
+
- Diffing tools with CLI-friendly formatting
|
|
29
|
+
- TypeScript-native with full type declarations and extensibility
|
|
30
|
+
- Supports asynchronous workflows for scalable, non-blocking processing
|
|
31
|
+
- Extensible architecture for integrating custom algorithms and filters
|
|
32
|
+
|
|
33
|
+
## Getting Started
|
|
34
|
+
|
|
35
|
+
Working with CmpStr is simple and straightforward. The package is installed just like any other using the following command:
|
|
36
|
+
|
|
37
|
+
```sh
|
|
38
|
+
npm install cmpstr
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
Minimal usage example:
|
|
42
|
+
|
|
43
|
+
```ts
|
|
44
|
+
import { CmpStr } from 'cmpstr';
|
|
45
|
+
|
|
46
|
+
const cmp = CmpStr.create().setMetric( 'levenshtein' ).setFlags( 'i' );
|
|
47
|
+
|
|
48
|
+
const result = cmp.test( [ 'hello', 'hola' ], 'Hallo' );
|
|
49
|
+
|
|
50
|
+
console.log( result );
|
|
51
|
+
// { source: 'hello', target: 'Hallo', match: 0.8 }
|
|
52
|
+
```
|
|
53
|
+
|
|
54
|
+
For asynchronous workloads:
|
|
55
|
+
|
|
56
|
+
```ts
|
|
57
|
+
import { CmpStrAsync } from 'cmpstr';
|
|
58
|
+
|
|
59
|
+
const cmp = CmpStrAsync.create().setProcessors( {
|
|
60
|
+
phonetic: { algo: 'soundex' }
|
|
61
|
+
} );
|
|
62
|
+
|
|
63
|
+
const result = await cmp.searchAsync( 'Maier', [
|
|
64
|
+
'Meyer', 'Müller', 'Miller', 'Meyers', 'Meier'
|
|
65
|
+
] );
|
|
66
|
+
|
|
67
|
+
console.log( result );
|
|
68
|
+
// [ 'Meyer', 'Meier' ]
|
|
69
|
+
```
|
|
70
|
+
|
|
71
|
+
## Documentation
|
|
72
|
+
|
|
73
|
+
The full documentation, API reference and advanced usage examples are available in the [GitHub Wiki](https://github.com/komed3/cmpstr/wiki).
|
|
74
|
+
|
|
75
|
+
**LICENSE MIT © 2023-2025 PAUL KÖHLER (KOMED3)**
|