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