(node: Node)
| 7 | } |
| 8 | |
| 9 | export function isTemplateLiteral(node: Node): node is TemplateLiteral { |
| 10 | return node.type === "TemplateLiteral"; |
| 11 | } |
| 12 | |
| 13 | export function isStringLiteral(node: Node): node is StringLiteral { |
| 14 | return isLiteral(node) |
no outgoing calls
no test coverage detected