bdjs
Version:
A potent package for creating Discord bots.
27 lines (26 loc) • 1.07 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const Function_1 = require("../structures/Function");
exports.default = new Function_1.BaseFunction({
description: 'Retrieves a status code from a request.',
parameters: [
{
name: 'Variable',
description: 'Variable name to get the status code from.',
required: true,
resolver: 'String',
compile: false,
value: 'none'
}
],
code: async function (d, [variable]) {
if (variable === undefined)
throw new d.error(d, 'required', 'Variable Name', d.function.name);
if (!d.hasEnvironmentVariable(variable))
throw new d.error(d, 'invalid', 'Variable Name', d.function.name);
const data = d.getEnvironmentVariable(variable);
if (typeof data !== 'object' || ['body', 'code', 'headers'].some(x => !Object.keys(data).includes(x)))
throw new d.error(d, 'invalid', 'Variable Name', d.function.name);
return data.code;
}
});