(name: string)
| 1687 | * Check if a function is an aggregate function. |
| 1688 | */ |
| 1689 | export function isAggregateFunction(name: string): boolean { |
| 1690 | const def = functionRegistry.get(name); |
| 1691 | return def?.category === "aggregate"; |
| 1692 | } |
| 1693 | |
| 1694 | /** |
| 1695 | * Check if a function's argument at the given index expects a path. |
no test coverage detected