(type: TableCalculationFunctionType)
| 642 | * @returns True if the function is a row function |
| 643 | */ |
| 644 | export function isRowFunction(type: TableCalculationFunctionType): boolean { |
| 645 | return (ROW_FUNCTIONS as readonly TableCalculationFunctionType[]).includes( |
| 646 | type, |
| 647 | ); |
| 648 | } |
| 649 | |
| 650 | /** |
| 651 | * Checks if any of the parsed functions are pivot functions. |
no outgoing calls
no test coverage detected