mirror of
https://github.com/status-im/consul.git
synced 2025-01-11 14:24:39 +00:00
7 lines
196 B
JavaScript
7 lines
196 B
JavaScript
import base64js from 'npm:base64-js';
|
|
export default function(str, encoding = 'utf-8') {
|
|
// decode
|
|
const bytes = base64js.toByteArray(str);
|
|
return new TextDecoder(encoding).decode(bytes);
|
|
}
|