The weeb for the next gen discord boat - Wamellow wamellow.com
bot discord
at master 156 B view raw
1export default function decimalToRgb(int: number) { 2 return { 3 b: int & 0xFF, 4 g: (int >> 8) & 0xFF, 5 r: (int >> 16) & 0xFF 6 }; 7}