UNPKG

arquero

Version:

Query processing and transformation of array-backed data tables.

7 lines (6 loc) 137 B
export function mapObject(obj, fn, output = {}) { for (const key in obj) { output[key] = fn(obj[key], key); } return output; }