isHSL.js 150 B

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