This commit is contained in:
Benjamin Toby
2024-12-06 14:24:26 +01:00
parent 767c3e3a82
commit 8b7ea057d0
480 changed files with 9605 additions and 1539 deletions
@@ -0,0 +1,10 @@
// @ts-check
const fs = require("fs");
const path = require("path");
const jsonFile = path.resolve(__dirname, "../../jsonData/userPriviledges.json");
const base64File = Buffer.from(fs.readFileSync(jsonFile, "utf8")).toString(
"base64"
);
console.log(base64File);