UNPKG

@uwdata/mosaic-sql

Version:

SQL query construction and analysis.

9 lines 234 B
import { fn } from '../util/function.js'; /** * Returns the first non-null argument. * @param expr The input expressions. */ export function coalesce(...expr) { return fn('coalesce', ...expr); } //# sourceMappingURL=util.js.map