UNPKG

node-pdfbox-util

Version:
8 lines (6 loc) 213 B
export const stingtobase64 = (str: string) => { return Buffer.from(str).toString('base64'); } export const base64tostring = (str: string) => { return Buffer.from(str, 'base64').toString('utf8'); }