(command: string)
| 29 | } |
| 30 | |
| 31 | function isTypingCommand(command: string): command is 'type' | 'fill' { |
| 32 | return command === 'type' || command === 'fill'; |
| 33 | } |
| 34 | |
| 35 | export function formatScriptArg(value: string): string { |
| 36 | return formatScriptToken(value, isStructuralScriptToken); |
no outgoing calls
no test coverage detected