hyper/test/testUtils/is-hex-color.ts

6 lines
147 B
TypeScript
Raw Normal View History

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