coderaiser / for-each-key

Call a function with key and value for each object property

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

for-each-key License NPM version Dependency Status Build Status Coverage

Call a function with key and value for each object property.

Install

npm i for-each-key --save

How to use?

const forEachKey = require('for-each-key');

forEachKey(console.log, {
    hello: 'world'
});
// output
'hello world'

License

MIT

About

Call a function with key and value for each object property

License:MIT License


Languages

Language:JavaScript 100.0%