github.com/sl1pm4t/consul@v1.4.5-0.20190325224627-74c31c540f9c/ui-v2/app/utils/atob.js (about) 1 import base64js from 'npm:base64-js'; 2 export default function(str, encoding = 'utf-8') { 3 // decode 4 const bytes = base64js.toByteArray(str); 5 return new TextDecoder(encoding).decode(bytes); 6 }