hyper/test/testUtils/is-hex-color.ts
2019-12-15 22:27:48 +01:00

5 lines
147 B
TypeScript

function isHexColor(color: string) {
return /(^#[0-9A-F]{6,8}$)|(^#[0-9A-F]{3}$)/i.test(color); // https://regex101.com/
}
export {isHexColor};