isRGBA.js 155 B

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