UNPKG

hd-utils

Version:

A handy utils for modern JS developers

8 lines (7 loc) 215 B
import { hexColorRegex } from "../../regex/index"; /** * @description Function to check if the parameter is a valid hex color */ export default function isHexColor(color) { return hexColorRegex.test(color); }