UNPKG

@brizy/ui

Version:
11 lines (10 loc) 304 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.isHex = void 0; var hex; (function (hex) { hex["hex"] = "hex"; })(hex || (hex = {})); const hexRegex = /^#(?:[A-Fa-f0-9]{3}){1,2}$/; const isHex = (colorString) => hexRegex.test(colorString); exports.isHex = isHex;