isRgbaColor()
function isRgbaColor(rgba): boolean
Check if a string is a valid RGBA color
Parameters
Parameter | Type | Description |
---|---|---|
rgba | string | The string to check |
Returns
boolean
True if the string is a valid RGBA color, false otherwise
Example
isRgbaColor('rgba(255, 0, 0, 1)'); // true
isRgbaColor('rgba(256, 0, 0, 1)'); // false