isHSLA.js 155 B

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