4d87240378d9e61223232587700764f8a856e1da7cffbfd98c0f9e845ca7caaab86738f11538535eef6691bdc93fe9c8e94f6fe044982119153f5579d3b78c 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;