1export const b64ToAscii = (base64Str: string): string => {2 const buff = Buffer.from(base64Str, 'base64')3 return buff.toString('ascii')4}5