Skip to content
Snippets Groups Projects
Select Git revision
1 result Searching

common.ts

Blame
  • cmd-serializer.ts 210 B
    // istanbul ignore next
    export default function(cmd: string | string[]): string | string[] {
      if (typeof cmd === 'string')
        return cmd.replace(/https:\/\/[^@]*@/g, 'https://**redacted**@');
      return cmd;
    }