static concat()

in ts/src/client.ts [59:64]


  static concat(raw: string[], sep: string[]): string[] {
    if (null === raw || typeof (raw) === 'undefined' || null === sep || typeof (sep) === 'undefined') {
      throw new Error('not a valid value for parameter')
    }
    return raw.concat(sep);
  }