72247140234ed15130ea2e58d6e8f45229408a20b834e891369fce0770c7592eef1c6dbc7dca3a0336596a861672dd0797b3f9951db4857975848d5f1280bb 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;