(values: string[])
| 16 | } |
| 17 | |
| 18 | export function joinMultiSelect(values: string[]): string { |
| 19 | return values.join(MULTISELECT_SEP) |
| 20 | } |
| 21 | |
| 22 | const TRUE_VALUES = new Set(['true', 'x', '1', 'yes', 'checked']) |
| 23 | export function isCheckboxTrue(cell: string): boolean { |
no outgoing calls
no test coverage detected