isHSLColor()
function isHSLColor(HSLColor): boolean
Checks if a string is a valid HSL color
Parameters
Parameter | Type | Description |
---|---|---|
HSLColor | string | The string to check |
Returns
boolean
True if the string is a valid HSL color, false otherwise
Example
isHSLColor('hsl(0, 100%, 50%)'); // true
isHSLColor('rgb(255, 255, 0)'); // false