css-filter-converter
Version:
A tool used to generate css filter color property via hexadecimal or rgb color formats
7 lines (6 loc) • 311 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.MAX_COLOR_INPUT_STRING_LENGTH = void 0;
// this is used to prevent regex matcher from evaluating a long string that can be assumed to be incorrect
// currently not applied to filter
exports.MAX_COLOR_INPUT_STRING_LENGTH = 25;