(color: RGB, opacity: number = 1)
| 138 | * Checks if color is black |
| 139 | */ |
| 140 | export const isBlack = (color: RGB, opacity: number = 1): boolean => |
| 141 | color.r === 0 && color.g === 0 && color.b === 0 && opacity === 1; |
| 142 | |
| 143 | /** |
| 144 | * Checks if color is white |
nothing calls this directly
no outgoing calls
no test coverage detected