(raw: string)
| 16 | export class RedactedGithubToken { |
| 17 | readonly #value: string |
| 18 | constructor(raw: string) { |
| 19 | this.#value = raw |
| 20 | } |
| 21 | reveal(): string { |
| 22 | return this.#value |
| 23 | } |
nothing calls this directly
no outgoing calls
no test coverage detected