(node: html.Element | html.Component)
| 22 | } |
| 23 | |
| 24 | export function hasI18nAttrs(node: html.Element | html.Component): boolean { |
| 25 | return node.attrs.some((attr: html.Attribute) => isI18nAttribute(attr.name)); |
| 26 | } |
| 27 | |
| 28 | export function icuFromI18nMessage(message: i18n.Message) { |
| 29 | return message.nodes[0] as i18n.IcuPlaceholder; |
no test coverage detected
searching dependent graphs…