(color: unknown)
| 48 | } |
| 49 | |
| 50 | function expectIndexed(color: unknown) { |
| 51 | const rgba = expectRgba(color) |
| 52 | expect(rgba.intent).toBe("indexed") |
| 53 | expect(rgba.slot).toBeLessThan(256) |
| 54 | } |
| 55 | |
| 56 | function spread(color: RGBA) { |
| 57 | const [r, g, b] = color.toInts() |
no test coverage detected