UNPKG

arquero

Version:

Query processing and transformation of array-backed data tables.

7 lines (5 loc) 168 B
import { concat } from './concat.js'; import { dedupe } from './dedupe.js'; export function union(table, ...others) { return dedupe(concat(table, others.flat())); }