(c: number)
| 149 | } |
| 150 | |
| 151 | export function isWhitespace(c: number): boolean { |
| 152 | return ( |
| 153 | c === CharCodes.Space || |
| 154 | c === CharCodes.NewLine || |
| 155 | c === CharCodes.Tab || |
| 156 | c === CharCodes.FormFeed || |
| 157 | c === CharCodes.CarriageReturn |
| 158 | ) |
| 159 | } |
| 160 | |
| 161 | function isEndOfTagSection(c: number): boolean { |
| 162 | return c === CharCodes.Slash || c === CharCodes.Gt || isWhitespace(c) |
no outgoing calls
no test coverage detected