mirror of
https://github.com/status-im/consul.git
synced 2025-01-09 05:23:04 +00:00
6 lines
160 B
JavaScript
6 lines
160 B
JavaScript
|
import { helper } from '@ember/component/helper';
|
||
|
import atob from 'consul-ui/utils/atob';
|
||
|
export default helper(function([str = '']) {
|
||
|
return atob(str);
|
||
|
});
|