(text: string)
| 12 | const REGEX = /\s+/; |
| 13 | const TOKENIZER = { |
| 14 | tokenize(text: string) { |
| 15 | return text.split(REGEX).filter( |
| 16 | // Filter empty tokens |
| 17 | text => text |
| 18 | ); |
| 19 | }, |
| 20 | }; |
| 21 | |
| 22 | export interface SanitizedOptions { |
nothing calls this directly
no test coverage detected
searching dependent graphs…