Repositorio del curso CCOM4030 el semestre B91 del proyecto Artesanías con el Instituto de Cultura
Emmanuel b7eccee437 Navbar před 4 roky
..
test Navbar před 4 roky
.editorconfig Navbar před 4 roky
.eslintrc Navbar před 4 roky
.travis.yml Navbar před 4 roky
LICENSE Navbar před 4 roky
README.md Navbar před 4 roky
index.js Navbar před 4 roky
package.json Navbar před 4 roky

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