(index)
| 116 | ]; |
| 117 | |
| 118 | export function color(index) { |
| 119 | return COLORS[index % COLORS.length]; |
| 120 | } |
| 121 | |
| 122 | export function transparentize(value, opacity) { |
| 123 | var alpha = opacity === undefined ? 0.5 : 1 - opacity; |
no outgoing calls
no test coverage detected