Skip to content

Instantly share code, notes, and snippets.

@erickthered
erickthered / base64.js
Created January 23, 2025 12:00
Equivalent functions of atob and atob for nodejs.
const btoa = (text) => Buffer.from(text, 'binary').toString('base64');
const atob = (base64) => Buffer.from(base64, 'base64').toString('binary');