(n: html.Node)
| 664 | } |
| 665 | |
| 666 | function _isOpeningComment(n: html.Node): boolean { |
| 667 | return !!(n instanceof html.Comment && n.value && n.value.startsWith('i18n')); |
| 668 | } |
| 669 | |
| 670 | function _isClosingComment(n: html.Node): boolean { |
| 671 | return !!(n instanceof html.Comment && n.value && n.value === '/i18n'); |
no outgoing calls
no test coverage detected
searching dependent graphs…