js-string-comparison
js-string-comparison copied to clipboard
🤠A library implementing different string similarity using JavaScript.
Results
1
js-string-comparison issues
Sort by
recently updated
recently updated
newest added
trafficstars
``` let stringComparison = require('string-comparison').default; // Log to see the structure of the cos object console.log(Object.keys(stringComparison)); // output [ 'cosine', 'diceCoefficient', 'jaccardIndex', 'levenshtein', 'lcs', 'longestCommonSubsequence', 'mlcs', 'metricLcs', 'jaroWinkler' ] ```...