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