securityos/node_modules/stylelint/lib/utils/hasValidHex.js

14 lines
299 B
JavaScript
Raw Permalink Normal View History

2024-09-06 15:32:35 +00:00
'use strict';
const HAS_VALID_HEX = /#(?:[\da-f]{3,4}|[\da-f]{6}|[\da-f]{8})(?:$|[^\da-f])/i;
/**
* Check if a value contains a valid 3, 4, 6 or 8 digit hex
*
* @param {string} value
* @returns {boolean}
*/
module.exports = function hasValidHex(value) {
return HAS_VALID_HEX.test(value);
};