UNPKG

arquero

Version:

Query processing and transformation of array-backed data tables.

8 lines (6 loc) 151 B
import { isArray } from './is-array.js'; export function toArray(value) { return value != null ? (isArray(value) ? value : [value]) : []; }