(cmd: string, ...args: string[])
| 10 | * shell metacharacters may be used to trigger arbitrary command execution. |
| 11 | */ |
| 12 | export const sh = (cmd: string, ...args: string[]) => |
| 13 | execFileP(cmd, args, { maxBuffer: Infinity, shell: true }).then( |
| 14 | ({ stdout }) => stdout |
| 15 | ) |
no outgoing calls
no test coverage detected