1 // Copyright (C) The Arvados Authors. All rights reserved.
3 // SPDX-License-Identifier: AGPL-3.0
5 export class UrlBuilder {
6 private readonly url: string = "";
7 private query: string = "";
9 constructor(host: string) {
13 public addParam(param: string, value: string) {
14 if (this.query.length === 0) {
19 this.query += `${param}=${value}`;
24 return this.url + this.query;