UNPKG

@delirius/welcard

Version:

WelCard is a lightweight and futuristic welcome card libary designed for WhatsApp Bots.

15 lines (11 loc) 298 B
async function rgbToHex(r, g, b) { const toHex = (value) => { const hex = value.toString(16); return hex.length === 1 ? "0" + hex : hex; }; const hexR = toHex(r); const hexG = toHex(g); const hexB = toHex(b); return `#${hexR}${hexG}${hexB}`; } module.exports = { rgbToHex };