Newer
Older
alert / js / node_modules / atob / node-atob.js
@Réz István Réz István on 18 Nov 2021 130 bytes first commit
"use strict";

function atob(str) {
  return Buffer.from(str, 'base64').toString('binary');
}

module.exports = atob.atob = atob;