UNPKG

kmp-matcher

Version:

Knut Morris Pratt algorithm's js realisation

11 lines (8 loc) 224 B
kmp-matcher ===== Knut Morris Pratt algroithm's realisation in js Example ``` var kmp = require('kmp-matcher'); kmp.kmp('aabbaaccdsbbaab', 'a'); // returns an array of positions of all occurrences [0, 1, 4, 5, 12, 13] ```