(input: string, options?: TokenizeOptions)
| 3890 | } |
| 3891 | |
| 3892 | function tokenizeAndHumanizeErrors(input: string, options?: TokenizeOptions): any[] { |
| 3893 | return tokenize(input, 'someUrl', getHtmlTagDefinition, options).errors.map((e) => [ |
| 3894 | e.msg, |
| 3895 | humanizeLineColumn(e.span.start), |
| 3896 | ]); |
| 3897 | } |
no test coverage detected