frontend/.pnpm-store/v3/files/ad/27d4b9ca0adece918e9c0d3d2f03a898fdac7429209ad09ece592e5f42d6d4e3ece5246bdc195eeaabb7fd8601827af6d1e9492894aa7498ce018ed8a8f75d

6 lines
214 B
Plaintext

import assertString from './util/assertString';
var hexcolor = /^#?([0-9A-F]{3}|[0-9A-F]{4}|[0-9A-F]{6}|[0-9A-F]{8})$/i;
export default function isHexColor(str) {
assertString(str);
return hexcolor.test(str);
}