mirror of
https://github.com/status-im/consul.git
synced 2025-01-09 05:23:04 +00:00
2b30667fc7
Also removes ember-browserify
7 lines
192 B
JavaScript
7 lines
192 B
JavaScript
import base64js from 'base64-js';
|
|
export default function(str, encoding = 'utf-8') {
|
|
// decode
|
|
const bytes = base64js.toByteArray(str);
|
|
return new TextDecoder(encoding).decode(bytes);
|
|
}
|