mirror of
https://github.com/crazy-max/ghaction-upx.git
synced 2024-11-22 18:36:09 -07:00
10 lines
125 B
JavaScript
10 lines
125 B
JavaScript
|
"use strict";
|
||
|
|
||
|
const atob = require("./lib/atob");
|
||
|
const btoa = require("./lib/btoa");
|
||
|
|
||
|
module.exports = {
|
||
|
atob,
|
||
|
btoa
|
||
|
};
|