djs-systems
Version:
The simplest way to build complex Discord bots.
18 lines (17 loc) • 616 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.toRgb = void 0;
/**
* Transforms Hex code into RGB Array (or) RGB String. This makes it easy to convert from discord.js v13 to v14.
* @param hex
* @link `Documentation:` https://simplyd.js.org/docs/misc/toRgb
* @example simplydjs.toRgb('#406DBC')
*/
function toRgb(hex) {
// splits it and parses integers
const red = parseInt(hex.slice(1, 3), 16);
const green = parseInt(hex.slice(3, 5), 16);
const blue = parseInt(hex.slice(5, 7), 16);
return [red, green, blue];
}
exports.toRgb = toRgb;