(cssColorSpecifier: string)
| 6 | import { Insight, SpecColumns } from './types'; |
| 7 | |
| 8 | function isColor(cssColorSpecifier: string) { |
| 9 | return !!d3color(cssColorSpecifier); |
| 10 | } |
| 11 | |
| 12 | function isQuantitative(column: Column) { |
| 13 | return column.type === 'number' || column.type === 'integer'; |
no outgoing calls
no test coverage detected