mirror of
https://github.com/actions/stale.git
synced 2026-07-02 22:22:52 +08:00
0649bd8119
* Bumping actions/github to 2.2.0 for GHES * Husky commit correct node modules
8 lines
130 B
JavaScript
8 lines
130 B
JavaScript
"use strict";
|
|
|
|
function atob(str) {
|
|
return Buffer.from(str, 'base64').toString('binary');
|
|
}
|
|
|
|
module.exports = atob.atob = atob;
|