Murugappan M

Results 1 comments of Murugappan M

Yes, just use the inbuilt Buffer library like below ``` const fileContent = 'abc'; const fileBase64 = Buffer.from(fileContent).toString('base64'); // same as encode(fileContent) Buffer.from(fileBase64, 'base64'); // same as decode(fileBase64) ``` Hope...