erp-construccion-backend/node_modules/for-each
2026-01-04 06:38:44 -06:00
..
.github Initial commit - erp-construccion-backend 2026-01-04 06:38:44 -06:00
test Initial commit - erp-construccion-backend 2026-01-04 06:38:44 -06:00
.editorconfig Initial commit - erp-construccion-backend 2026-01-04 06:38:44 -06:00
.eslintrc Initial commit - erp-construccion-backend 2026-01-04 06:38:44 -06:00
.nycrc Initial commit - erp-construccion-backend 2026-01-04 06:38:44 -06:00
CHANGELOG.md Initial commit - erp-construccion-backend 2026-01-04 06:38:44 -06:00
index.d.ts Initial commit - erp-construccion-backend 2026-01-04 06:38:44 -06:00
index.js Initial commit - erp-construccion-backend 2026-01-04 06:38:44 -06:00
LICENSE Initial commit - erp-construccion-backend 2026-01-04 06:38:44 -06:00
package.json Initial commit - erp-construccion-backend 2026-01-04 06:38:44 -06:00
README.md Initial commit - erp-construccion-backend 2026-01-04 06:38:44 -06:00
tsconfig.json Initial commit - erp-construccion-backend 2026-01-04 06:38:44 -06:00

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

MIT Licenced