Bakhtina Sofya b84cb877be 1st comm 2 veckor sedan
..
test b84cb877be 1st comm 2 veckor sedan
.editorconfig b84cb877be 1st comm 2 veckor sedan
.eslintrc b84cb877be 1st comm 2 veckor sedan
.travis.yml b84cb877be 1st comm 2 veckor sedan
LICENSE b84cb877be 1st comm 2 veckor sedan
README.md b84cb877be 1st comm 2 veckor sedan
index.js b84cb877be 1st comm 2 veckor sedan
package.json b84cb877be 1st comm 2 veckor sedan

README.md

for-each build status

browser support

A better forEach.

Example

Like Array.prototype.forEach but works on objects.

var forEach = require("for-each")

forEach({ key: "value" }, function (value, key, object) {
    /* code */
})

As a bonus, it's also a perfectly function shim/polyfill for arrays too!

var forEach = require("for-each")

forEach([1, 2, 3], function (value, index, array) {
    /* code */
})

Installation

npm install for-each

Contributors

  • Raynos

MIT Licenced