1.1.0 • Published 8 years ago
@defo550/hex-to-rgb v1.1.0
Convert a hexadecimal to RGB format
Installation
Package is distributed via npm:
npm i @defo550/hex-to-rgb
Usage
const hexRgb = require('@defo550/hex-to-rgb');
hexRgb('#ffa100');
// [255, 161, 0]
hexRgb('#000');
// [0, 0, 0]