static join()

in ts/src/client.ts [50:56]


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