blob: af9b62a6ee14484206cc77a915aa6d6034c45bf5 [file] [log] [blame]
'use strict';
const rgbaRegex = require('rgba-regex');
function isRgba(str) {
return rgbaRegex({ exact: true }).test(str);
}
module.exports = isRgba;