1.0.0 • Published 12 years ago

distance v1.0.0

Weekly downloads
1
License
-
Repository
github
Last release
12 years ago

What's Distance?

Distance is a Coffeescript and Javascript module for calculating distances between strings.

var distance = require "distance";
console.log(distance.sift3("banana", "fanana"));
console.log(distance.levenshtein("banana", "fanana"));

The distance string metrics currently supported are:

To our knowledge, the implementations are the fastest variations available.

Installation

The recommended way is through the excellent npm:

$ npm install distance

Otherwise, you can check it in your repository and then expose it:

$ git clone git://github.com/awnist/distance.git node_modules/distance/

Distance is UNLICENSED.