near-dup-detection
v0.1.15
Published
a simple near duplicate detection by Shingling method
Downloads
10
Maintainers
Readme
Near duplicate detection for node.js Installation
npm i near-dup-detection
Declaration
ndd(text1, text2, [shingleLength = 10], callback(err, result))
Example
var ndd = require('near-dup-detection');
ndd(text1, text2, function(err, result) {
console.log(result); // from 0 to 1 where 1 - the same documents
});