1.0.2 • Published 1 year ago

ahocorasick-ts v1.0.2

Weekly downloads
-
License
MIT
Repository
-
Last release
1 year ago

AhoCorasick-ts

AhoCorasick automation implemented in TypeScript

Almost the same to ahocorasick, except this package is written in ts.


Reference

import { AhoCorasick } from "ahocorasick-ts"

const ac = new AhoCorasick(["123", "345", "456"])

console.log(ac.search("123456"))
[
  { end: 2, keys: [ '123' ] },
  { end: 4, keys: [ '345' ] },
  { end: 5, keys: [ '456' ] }
]