UNPKG

@tanishiking/aho-corasick

Version:

TypeScript implementation of the Aho-Corasick algorithm for efficient string matching

8 lines (7 loc) 205 B
/** * Convert string to character array * * @param str - string to split. */ export declare function stringToArray(str: string): string[]; export declare function isAlphaNumeric(str: string): boolean;