Skip to content

Instantly share code, notes, and snippets.

View 1Copenut's full-sized avatar
:dependabot:
Possibly The Condiment King 🌭

Trevor Pierce 1Copenut

:dependabot:
Possibly The Condiment King 🌭
View GitHub Profile
@jmshal
jmshal / atob.js
Last active April 27, 2024 04:12
Node.js ponyfill for atob and btoa encoding functions
module.exports = function atob(a) {
return new Buffer(a, 'base64').toString('binary');
};