1.0.2 • Published 10 years ago
fuzzy-string-matching v1.0.2
fuzzy-string-matching 
Get the degree of resemblance between two strings
Install
$ npm install --save fuzzy-string-matchingUsage
const fsm = require('fuzzy-string-matching');
fsm('Abc', 'aBC'); // case sensitive = false
//=> 1
fsm('Abc', 'aBC', true); // case sensitive = true
//=> 0
fsm('abcdef', 'arcdet');
//=> 0.444444Testing
$ npm testLicense
MIT © EL AZZABI Ahmed