UNPKG

arquero

Version:

Query processing and transformation of array-backed data tables.

9 lines (7 loc) 170 B
import { entries } from './entries.js'; export function assign(map, pairs) { for (const [key, value] of entries(pairs)) { map.set(key, value); } return map; }