UNPKG

428 BJavaScriptView Raw
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3var Secrets = /** @class */ (function () {
4 function Secrets(primary, secondary) {
5 this.primary = primary;
6 this.secondary = secondary;
7 }
8 Secrets.prototype.asHeader = function () {
9 return this.secondary ? this.primary + "," + this.secondary : this.primary;
10 };
11 return Secrets;
12}());
13exports.Secrets = Secrets;