(node: Node)
| 121 | } |
| 122 | |
| 123 | function commands(node: Node) { |
| 124 | return node.descendantsOfType("command").filter((child): child is Node => Boolean(child)) |
| 125 | } |
| 126 | |
| 127 | function unquote(text: string) { |
| 128 | if (text.length < 2) return text |
no outgoing calls
no test coverage detected