All files Secret.ts

100% Statements 21/21
100% Branches 6/6
100% Functions 5/5
100% Lines 21/21

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 281x     1x 27x 27x   1x 14x 14x   1x 8x 8x   1x 8x 8x   1x 16x 16x 4x 4x 16x 16x 1x  
export class SecretString {
  private _value: string;
 
  constructor(value: string) {
    this._value = value;
  }
 
  value(): string {
    return this._value;
  }
 
  toString(): string {
    return this.mask();
  }
 
  toJSON(): string {
    return this.mask();
  }
 
  private mask(): string {
    let unmasked = "";
    if (this._value.length >= 6) {
      unmasked = this._value.substring(0, 3);
    }
    return unmasked + "**********";
  }
}