markitect-main/node_modules/leven
tegwick d0abaab63a chore: update project state and prepare for image support development
- Add comprehensive image test document with various image types
- Update project structure with development artifacts
- Prepare foundation for image support enhancement phase
- Include test files for validating image editing workflows

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-10-26 08:06:22 +01:00
..
index.d.ts chore: update project state and prepare for image support development 2025-10-26 08:06:22 +01:00
index.js chore: update project state and prepare for image support development 2025-10-26 08:06:22 +01:00
license chore: update project state and prepare for image support development 2025-10-26 08:06:22 +01:00
package.json chore: update project state and prepare for image support development 2025-10-26 08:06:22 +01:00
readme.md chore: update project state and prepare for image support development 2025-10-26 08:06:22 +01:00

leven Build Status

Measure the difference between two strings
One of the fastest JS implementations of the Levenshtein distance algorithm

Install

$ npm install leven

Usage

const leven = require('leven');

leven('cat', 'cow');
//=> 2

Benchmark

$ npm run bench
         165,926 op/s » leven
         164,398 op/s » talisman
           1,044 op/s » levenshtein-edit-distance
             628 op/s » fast-levenshtein
             497 op/s » levenshtein-component
             195 op/s » ld
             190 op/s » levenshtein
             168 op/s » levdist
              10 op/s » natural

License

MIT © Sindre Sorhus