Skip to content
This repository has been archived by the owner on May 24, 2022. It is now read-only.

miguelmota/knuth-morris-pratt

Repository files navigation

kmp

Knuth-Morris-Pratt string searching algorithm in Javascript.

NPM

Install

npm install kmp
bower install kmp

Usage

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')); // -1

Test

npm test

License

MIT

About

Knuth-Morris-Pratt string searching algorithm in Javascript.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published