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