UNPKG

hd-utils

Version:

A handy utils for modern JS developers

8 lines (7 loc) 227 B
import { rgbColorRegex } from "../../regex/index"; /** * @description // Function to check if the parameter is a valid RGB or RGBA color; */ export default function isRgbColor(color) { return rgbColorRegex.test(color); }