blob: d7305a329d67289aa4620708ba1f20c9ea85f48d [file] [log] [blame]
Leo Repp58b9f112021-11-22 11:57:47 +01001"use strict";
2
3function atob(str) {
4 return Buffer.from(str, 'base64').toString('binary');
5}
6
7module.exports = atob.atob = atob;