Home Manual Reference Source

Overview

Installation

Can be managed using yarn, npm, or jspm.

yarn

yarn add @string-searching/matiyasevich-knuth-morris-pratt

npm

npm install @string-searching/matiyasevich-knuth-morris-pratt --save

jspm

jspm install npm:@string-searching/matiyasevich-knuth-morris-pratt

Usage

:warning: Depending on your environment, the code may require regeneratorRuntime to be defined, for instance by importing regenerator-runtime/runtime.

First, require the polyfill at the entry point of your application

await import( 'regenerator-runtime/runtime.js' ) ;
// or
import 'regenerator-runtime/runtime.js' ;

Then, import the library where needed

const {lessCode, fastScan} = await import( '@string-searching/matiyasevich-knuth-morris-pratt' ) ;
// or
import {lessCode, fastScan} from '@string-searching/matiyasevich-knuth-morris-pratt' ;

Examples

More examples in the test files.