(node: any)
| 458 | } |
| 459 | |
| 460 | function isStringLiteral(node: any) { |
| 461 | return ( |
| 462 | node.type === 'StringLiteral' || (node.type === 'Literal' && typeof node.value === 'string') |
| 463 | ) |
| 464 | } |
| 465 | |
| 466 | function sortTemplateLiteral( |
| 467 | node: any, |
no outgoing calls
no test coverage detected
searching dependent graphs…