1
0
mirror of https://github.com/titanscouting/tra-analysis.git synced 2025-03-14 01:25:47 +00:00
2019-01-06 13:14:45 -06:00

8 lines
130 B
JavaScript

"use strict";
function atob(str) {
return Buffer.from(str, 'base64').toString('binary');
}
module.exports = atob.atob = atob;