kmp
v0.0.3
Published
Knuth-Morris-Pratt string searching algorithm.
Maintainers
Readme
kmp
Knuth-Morris-Pratt string searching algorithm in Javascript.
Install
npm install kmpbower install kmpUsage
var kmp = require('kmp');
console.log(kmp('she sells seashells by the seashore', 'shell')); // 13
console.log(kmp('she sells seashells by the seashore', 'seaweed')); // -1Test
npm testLicense
MIT

