github.com/Aestek/consul@v1.2.4-0.20190309222502-b2c31e33971a/ui-v2/app/utils/btoa.js (about)

     1  import base64js from 'npm:base64-js';
     2  export default function(str, encoding = 'utf-8') {
     3    // encode
     4    const bytes = new TextEncoder(encoding).encode(str);
     5    return base64js.fromByteArray(bytes);
     6  }