for-each-obj-indexed

v0.9.6arrow_drop_down
v0.9.6
STATUS
Passing
DOWNLOADS
2
VISIBILITY
Public
PUBLISHED
5 years ago
SIZE
1 KB
Iterate over an input `object`, calling a provided function `fn` for each key and value in the object.
1 contributor
Install for-each-obj-indexed as a package?
Copied
npm i @bit/justin-capalbo.ramda.for-each-obj-indexed
Set Bit as a scoped registryLearn more
npm config set '@bit:registry' https://node.bit.cloud
Component Example
React
React
Vue
Angular
React Native
Add dependency... help_outline
Just
import
any of the 1 million components
and packages in Bit or NPM to the example.
import Button from '@bit/grommet.grommet.button';
import Lodash from 'lodash';
toggle layout
No preview available
modifieddraft
chevron_left
chevron_right
forEachObjIndexed (
fn:Function,
obj:Object
) : Object

Iterate over an input object, calling a provided function fn for each key and value in the object.

fn receives three argument: (value, key, obj).

Example
const printKeyConcatValue = (value, key) => console.log(key + ':' + value);
     R.forEachObjIndexed(printKeyConcatValue, {x: 1, y: 2}); //=> {x: 1, y: 2}
     // logs x:1
     // logs y:2
Arguments
fn: Function

The function to invoke. Receives three argument, value, key, obj.

obj: Object

The object to iterate over.

Returns
Object

The original object.

Help and resources