forked from sashin/sashinexists
9 lines
179 B
JavaScript
9 lines
179 B
JavaScript
/* IMPORT */
|
|
import Buffer from 'node-buffer-encoding';
|
|
/* MAIN */
|
|
const decode = (base64) => {
|
|
return Buffer.decode(base64, 'base64');
|
|
};
|
|
/* EXPORT */
|
|
export default decode;
|