(input: string, options?: TokenizeOptions)
| 3907 | } |
| 3908 | |
| 3909 | function tokenizeAndHumanizeErrors(input: string, options?: TokenizeOptions): any[] { |
| 3910 | return tokenize(input, 'someUrl', getHtmlTagDefinition, options).errors.map((e) => [ |
| 3911 | e.msg, |
| 3912 | humanizeLineColumn(e.span.start), |
| 3913 | ]); |
| 3914 | } |
no test coverage detected