Socket
Socket
Sign inDemoInstall

eval-overflow

Package Overview
Dependencies
1
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    eval-overflow

A Hastebin link generator for Discord, when your eval output is over 1500 characters


Version published
Weekly downloads
1
decreased by-85.71%
Maintainers
1
Install size
105 kB
Created
Weekly downloads
 

Readme

Source

eval-overflow

A Discord.js addon that you can add to your eval command to format your output if it's over 1500 characters.

Usage

First, install the package using npm:

npm install eval-overflow --save

Then, require the package and use it like so:

const { hastebin } = require('eval-overflow');

function clean(text) {
    if (typeof(text) === 'string')
        return text.replace(/`/g, "`" + String.fromCharCode(8203)).replace(/@/g, "@" + String.fromCharCode(8203));
    else
        return text;
}

exports.run = (client, msg, args) => {
args = args.join(" ");
try {
    var evaled = eval(args);
    if (typeof evaled !== 'string')
            evaled = require('util').inspect(evaled);
    if (evaled.length > 1500) {
        hastebin(`${evaled}`, "js").then(r => {
        msg.channel.send(`The output was over 1.5k characters, I have uploaded to hastebin. Uploaded to ${r}.`);
        }).catch(console.error);
    } else {
        msg.channel.send(`\`\`\`xl\n${clean(evaled)}\n\`\`\``);
        }
    } catch (err) {
msg.channel.send(`\`ERROR\` \`\`\`xl\n${clean(err)}\n\`\`\``);
    }
};

License

MIT

FAQs

Last updated on 23 Aug 2017

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc