mirror of
https://git.mirrors.martin98.com/https://github.com/actions/setup-python
synced 2025-08-03 10:20:37 +08:00
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;
|