An Open-source Discord Mini-Games Package
const {encrypt} = require('text-encryption-tool')
const text = `Hello!, This is a npm package!`; // Text to Encrypt.
const output = encrypt(text); // Encrypting the Text.
console.log(output); //logging the encrypted Text.
{
text: "hMGbwUXZwYHICZ3TgADITRGITRWQ5BCLhYzZnN2V",
key: "==QbsNGcuhUZnh2aUNXavFGQCdWZ290VjxWQ1l3UkZDM"
}