You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
529 B
22 lines
529 B
8 months ago
|
var root = require('./root');
|
||
|
var isNode = require('./isNode');
|
||
|
var base64 = require('./base64');
|
||
|
var map = require('./map');
|
||
|
if (isNode) {
|
||
|
exports = function(str) {
|
||
|
return new Buffer(str, 'base64').toString('binary');
|
||
|
};
|
||
|
} else {
|
||
|
if (root.atob && !false) {
|
||
|
exports = root.atob;
|
||
|
} else {
|
||
|
exports = function(str) {
|
||
|
return map(base64.decode(str), function(c) {
|
||
|
return String.fromCharCode(c);
|
||
|
}).join('');
|
||
|
};
|
||
|
}
|
||
|
}
|
||
|
|
||
|
module.exports = exports;
|