# seebigs-each

> Safely iterate over each item in an Object or Array

Latest version **1.1.0** (published 2018-02-05) · MIT license · 0 weekly downloads

## Install

```sh
npm install seebigs-each
pnpm add seebigs-each
yarn add seebigs-each
bun add seebigs-each
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.1.0 |
| Published | 2018-02-05 |
| First published | 2017-07-18 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Chris Bigelow |
| Maintainers | seebigs |

## Links

- npm: https://www.npmjs.com/package/seebigs-each
- Repository: https://github.com/seebigs/seebigs-each
- Homepage: https://github.com/seebigs/seebigs-each#readme
- Issues: https://github.com/seebigs/seebigs-each/issues
- npm.io page: https://npm.io/package/seebigs-each

## Recent versions

- 1.1.0 (latest) — 2018-02-05
- 1.0.1 — 2017-07-25
- 1.0.0 — 2017-07-18

## README

# seebigs-each

*Safely iterate over each item in an Object or Array*

# Install
```
$ npm install seebigs-each
```

# Use
```js
var each = require('seebigs-each');

each(collection, function (value, key, collection) {
    if (value.indexOf('foo') !== -1) {
        console.log(value);
        return false; // return false to drop out of loop early
    }
});
```

---
_Source: https://npm.io/package/seebigs-each · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
