UNPKG

askui

Version:

Reliable, automated end-to-end-testing that depends on what is shown on your screen instead of the technology you are running on

12 lines (11 loc) 241 B
export class Credentials { constructor(token) { this.token = token; } get base64Encoded() { return this.buffered.toString('base64'); } get buffered() { return Buffer.from(`${this.token}`); } }