(node: Node)
| 3 | export type StringLiteral = (Literal & {value: string}) | TemplateLiteral | BinaryExpression; |
| 4 | |
| 5 | export function isLiteral(node: Node): node is Literal { |
| 6 | return node.type === "Literal"; |
| 7 | } |
| 8 | |
| 9 | export function isTemplateLiteral(node: Node): node is TemplateLiteral { |
| 10 | return node.type === "TemplateLiteral"; |
no outgoing calls
no test coverage detected