()
| 26 | return `${s1}${styleText('inverse', s2[0])}${s2.slice(1)}`; |
| 27 | } |
| 28 | clear() { |
| 29 | this._clearUserInput(); |
| 30 | } |
| 31 | constructor({ mask, ...opts }: PasswordOptions) { |
| 32 | super(opts); |
| 33 | this._mask = mask ?? '•'; |
nothing calls this directly
no test coverage detected