(a: string, b: string)
| 176 | const command = input.command.trim() |
| 177 | |
| 178 | function strEquals(a: string, b: string): boolean { |
| 179 | return a.toLowerCase() === b.toLowerCase() |
| 180 | } |
| 181 | function strStartsWith(str: string, prefix: string): boolean { |
| 182 | return str.toLowerCase().startsWith(prefix.toLowerCase()) |
| 183 | } |
no outgoing calls
no test coverage detected