isHex.js 156 B

123456789
  1. 'use strict';
  2. const hexRegex = require('hex-color-regex');
  3. function isHex(str) {
  4. return hexRegex({ exact: true }).test(str);
  5. }
  6. module.exports = isHex;