UNPKG

js-search

Version:

JS Search is an efficient, client-side search library for JavaScript and JSON objects

17 lines (13 loc) 292 B
// @flow import type { IIndexStrategy } from './IndexStrategy'; /** * Indexes for exact word matches. */ export class ExactWordIndexStrategy implements IIndexStrategy { /** * @inheritDocs */ expandToken(token : string) : Array<string> { return token ? [token] : []; } };