const magick = require("../build/Release/image.node"); const { promisify } = require("util"); exports.run = async (message) => { const image = await require("../utils/imagedetect.js")(message); if (image === undefined) return `${message.author.mention}, you need to provide an image to spin!`; const processMessage = await message.channel.createMessage(" Processing... This might take a while"); const buffer = await promisify(magick.globe)(image.path, image.type.toUpperCase(), image.delay ? (100 / image.delay.split("/")[0]) * image.delay.split("/")[1] : 0); await processMessage.delete(); return { file: buffer, name: "globe.gif" }; }; exports.aliases = ["rotate"]; exports.category = 5; exports.help = "Spins an image";