forked from rDrama/rDrama
1
0
Fork 0
rDrama/node_modules/is-color-stop/lib/isHSL.js

10 lines
150 B
JavaScript

'use strict';
const hslRegex = require('hsl-regex');
function isHSL(str) {
return hslRegex({ exact: true }).test(str);
}
module.exports = isHSL;