🌳
pt0/sharedF/moDashF/b64ToAsciiF.mts
1export const b64ToAscii = (base64Str: string): string => {
2 const buff = Buffer.from(base64Str, 'base64')
3 return buff.toString('ascii')
4}