数通智联化工云平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

13 lines
278 B

'use strict';
const IS_VALID_HEX = /^#(?:[\da-f]{3,4}|[\da-f]{6}|[\da-f]{8})$/i;
/**
* Check if a value is a valid 3, 4, 6 or 8 digit hex
*
* @param {string} value
* @returns {boolean}
*/
module.exports = function isValidHex(value) {
return IS_VALID_HEX.test(value);
};