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

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