()
| 51 | } |
| 52 | |
| 53 | export function clearColorCache(): void { |
| 54 | hslaParseCache.clear(); |
| 55 | rgbaParseCache.clear(); |
| 56 | } |
| 57 | |
| 58 | // https://en.wikipedia.org/wiki/HSL_and_HSV |
| 59 | export function hslToRGB({h, s, l, a = 1}: HSLA): RGBA { |
no test coverage detected