2
0
mirror of https://github.com/status-im/consul.git synced 2025-01-22 03:29:43 +00:00
2019-09-04 08:35:00 +00:00

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);
}