Projekt

Obecné

Profil

Stáhnout (130 Bajtů) Statistiky
| Větev: | Revize:
1 9bb1e829 cagy
"use strict";
2
3
function atob(str) {
4
  return Buffer.from(str, 'base64').toString('binary');
5
}
6
7
module.exports = atob.atob = atob;