abab
npm install ababAPI
btoa (base64 encode)
btoa (base64 encode)const { btoa } = require('abab');
btoa('Hello, world!'); // 'SGVsbG8sIHdvcmxkIQ=='atob (base64 decode)
atob (base64 decode)const { atob } = require('abab');
atob('SGVsbG8sIHdvcmxkIQ=='); // 'Hello, world!'Valid characters
Browsers
Development
Remembering what atob and btoa stand for
atob and btoa stand forLast updated