@tryforge/forgescript
Version:
ForgeScript is a comprehensive package that empowers you to effortlessly interact with Discord's API. It ensures scripting remains easy to learn and consistently effective.
25 lines • 851 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
const structures_1 = require("../../structures");
exports.default = new structures_1.NativeFunction({
name: "$arrayRandomValue",
version: "1.4.0",
description: "Returns a random element",
unwrap: true,
output: structures_1.ArgType.Unknown,
brackets: true,
args: [
{
name: "variable",
description: "The variable the array is held on",
type: structures_1.ArgType.String,
rest: false,
required: true,
},
],
execute(ctx, [variable]) {
const arr = ctx.getEnvironmentInstance(Array, variable);
return this.successJSON(Array.isArray(arr) ? arr[Math.floor(Math.random() * arr.length)] : undefined);
},
});
//# sourceMappingURL=arrayRandomValue.js.map
;