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

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