blob: 20a26df7b8b5bd6afe006b0af4f2810e90044345 [file] [log] [blame]
import { atob } from './base64';
import binaryStringToBlobOrBuffer from './binaryStringToBlobOrBuffer';
function b64ToBluffer(b64, type) {
return binaryStringToBlobOrBuffer(atob(b64), type);
}
export default b64ToBluffer;