blob: b006edd471f1d68316c7534d9427c72ca6be581c (
plain)
1
2
3
4
5
6
7
8
|
/**
* Decode a base64-encoded string to a binary string
*
* @param input Base64-encoded string
*/
export default function asciiToBinary(input: string) {
return Buffer.from(input, 'base64').toString('binary');
}
|