blob: 525392637c31eae7466167ef0c9fdf9f9bc2b9c5 [file] [log] [blame]
'use strict';
const hslaRegex = require('hsla-regex');
function isHSLA(str) {
return hslaRegex({ exact: true }).test(str);
}
module.exports = isHSLA;