mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-04-26 09:25:22 -04:00
7 lines
220 B
TypeScript
7 lines
220 B
TypeScript
import hexToRgbaOrig from "hex-to-rgba";
|
|
|
|
// removes spaces from default hex-to-rgba output
|
|
const hexToRgba = (color: string, alpha?: number) => hexToRgbaOrig(color, alpha).replace(/\s/g, "");
|
|
|
|
export default hexToRgba;
|