UNPKG

roblox-mass-unfollow

Version:

This can be used to mass unfollow users on Roblox.

27 lines (23 loc) 675 B
const yargs = require("yargs") const versionString = require("./package.json").version const argv = yargs .usage("Usage: roblox-mass-unfollow [options]") .alias("v", "version") .version(versionString) .describe("version", "show version information") .alias("h", "help") .help("help") .describe("help", "show help") .showHelpOnFail(false, "specify --help for available options") .option("cookie", { alias: "c", desc: "The .ROBLOSECURITY cookie to use for logging in.", string: true, }) .option("max", { alias: "m", desc: "The max users to unfollow, default is no maximum.", number: true, }) .parse() module.exports = argv