Emmanuel b7eccee437 Navbar | hace 5 años | |
---|---|---|
.. | ||
test | hace 5 años | |
.editorconfig | hace 5 años | |
.eslintrc | hace 5 años | |
.travis.yml | hace 5 años | |
LICENSE | hace 5 años | |
README.md | hace 5 años | |
index.js | hace 5 años | |
package.json | hace 5 años |
A better forEach.
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 */
})
npm install for-each