.gitignore added
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / stylelint / lib / utils / isValidHex.js
1 /* @flow */
2 "use strict";
3
4 /**
5  * Check if a value is a valid 3, 4, 6 or 8 digit hex
6  */
7 module.exports = function(value /*: string*/) /*: boolean*/ {
8   return /^#(?:[0-9a-fA-F]{3,4}|[0-9a-fA-F]{6}|[0-9a-fA-F]{8})$/.test(value);
9 };