Security News
38% of CISOs Fear They’re Not Moving Fast Enough on AI
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
levenshtein-damerau
Advanced tools
A quick and easy Damerau Levenshtein implementation (not a Levenshtein only operation which doesn't do look aheads or transpositions).
skod.it implementation of the Damerau-Levenshtein distance. This is not the Levenshtein distance only, this allows for a look-ahead and substitute at no cost.
Comparing: 'four' and 'fuor'
Levenshtein Distance: 2 - a substitution on the 'o' and the 'u' is required
Damerau-Levenshtein Distance: 1 - in 'fuor' borrowed the 'o' and had to generate the 'o' in the third place again.
Using skod_levenshteindamerau
$ npm install levenshtein-damerau
Within your application
var ld = require("./skodld.js");
console.log("four:fuor",ld("four","fuor"));
/* DEBUG */
var showmatrix = 6;
console.log("\nfuor:four,debug custom");
ld("fuor","four",function(matrix){
showmatrix--;
if(showmatrix == 0){
console.log(matrix);
}
});
console.log("\nfuor:four,default debug");
ld("fuor","four",1);
Outputs:
four:fuor 1
fuor:four,debug custom
[ [ 8, 8, 8, 8, 8, 8 ],
[ 8, 0, 1, 2, 3, 4 ],
[ 8, 1, 0, 1, 2, 3 ],
[ 8, 2, 1, 1, 1, 2 ],
[ 8, 3, 2, 1, 1, 2 ],
[ 8, 4, 3, 2, 2, 1 ] ]
fuor:four,default debug
f u o r
8
f
o
u
r
f u o r
8 8 8 8 8 8
f 8 0 1 2 3 4
o 8 1
u 8 2
r 8 3
8 4
f u o r
8 8 8 8 8 8
f 8 0 1 2 3 4
o 8 1 0 1 2 3
u 8 2
r 8 3
8 4
f u o r
8 8 8 8 8 8
f 8 0 1 2 3 4
o 8 1 0 1 2 3
u 8 2 1 1 1 2
r 8 3
8 4
f u o r
8 8 8 8 8 8
f 8 0 1 2 3 4
o 8 1 0 1 2 3
u 8 2 1 1 1 2
r 8 3 2 1 1 2
8 4
f u o r
8 8 8 8 8 8
f 8 0 1 2 3 4
o 8 1 0 1 2 3
u 8 2 1 1 1 2
r 8 3 2 1 1 2
8 4 3 2 2 1
#License This modoule is free software, distributed under Artistic License.
FAQs
A quick and easy Damerau Levenshtein implementation (not a Levenshtein only operation which doesn't do look aheads or transpositions).
The npm package levenshtein-damerau receives a total of 0 weekly downloads. As such, levenshtein-damerau popularity was classified as not popular.
We found that levenshtein-damerau demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.
Security News
Company News
Socket is joining TC54 to help develop standards for software supply chain security, contributing to the evolution of SBOMs, CycloneDX, and Package URL specifications.