(script: string)
| 1 | export function encodePowerShellCommand(script: string): string { |
| 2 | return Buffer.from(script, 'utf16le').toString('base64') |
| 3 | } |
| 4 | |
| 5 | export function powerShellInlineArgs(script: string): string[] { |
| 6 | return [ |
no test coverage detected