Files
30-seconds-of-code/snippets/transform.md
30secondsofcode 72957f37e6 Travis build: 1211
2018-01-12 11:57:19 +00:00

21 lines
529 B
Markdown

### transform
Applies a function against an accumulator and each key in the object (from left to right).
Use `Object.keys(obj)` to iterate over each key in the object, `Array.reduce()` to call the apply the specified function against the given accumulator.
```js
const transform = (obj, fn, acc) => Object.keys(obj).reduce((a, k) => fn(a, obj[k], k, obj), acc);
```
```js
transform(
{ a: 1, b: 2, c: 1 },
(r, v, k) => {
(r[v] || (r[v] = [])).push(k);
return r;
},
{}
); // { '1': ['a', 'c'], '2': ['b'] }
```