# find-polyfill

> Implements the find method for Array if not already implemented

Latest version **1.0.1** (published 2018-04-12) · MIT license · 0 weekly downloads

## Install

```sh
npm install find-polyfill
pnpm add find-polyfill
yarn add find-polyfill
bun add find-polyfill
```

## 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.0.1 |
| Published | 2018-04-12 |
| First published | 2018-02-11 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 3.2 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Sylvain Longepée |
| Maintainers | sylvain59 |
| Keywords | Array, find, IE, Internet, Explorer |

## Links

- npm: https://www.npmjs.com/package/find-polyfill
- Repository: https://github.com/Sylvain59650/find-polyfill
- Homepage: https://github.com/Sylvain59650/find-polyfill#readme
- Issues: https://github.com/Sylvain59650/find-polyfill/issues
- npm.io page: https://npm.io/package/find-polyfill

## Alternatives

- [launchdarkly-js-client-sdk](https://npm.io/package/launchdarkly-js-client-sdk.md) — 2.5M weekly downloads
- [@elastic/elasticsearch](https://npm.io/package/@elastic/elasticsearch.md) — 2.1M weekly downloads
- [@c8y/client](https://npm.io/package/@c8y/client.md) — 15.3K weekly downloads
- [@signaldb/maverickjs](https://npm.io/package/@signaldb/maverickjs.md) — 1.7K weekly downloads
- [@bbc/http-transport-cache](https://npm.io/package/@bbc/http-transport-cache.md) — 1.2K weekly downloads

## Recent versions

- 1.0.1 (latest) — 2018-04-12
- 1.0.0 — 2018-04-12
- 0.9.0 — 2018-02-11

## README

# find-polyfill

<div style="display:inline">

[![build](https://travis-ci.org/Sylvain59650/find-polyfill.png?branch=master)](https://travis-ci.org/Sylvain59650/find-polyfill)
![version](https://img.shields.io/npm/v/find-polyfill.svg)
![package](https://img.shields.io/github/package-json/v/Sylvain59650/find-polyfill.svg)
![dependencies](https://img.shields.io/david/Sylvain59650/find-polyfill.svg)
![minified](https://img.shields.io/bundlephobia/min/find-polyfill.svg)
![license](https://img.shields.io/npm/l/find-polyfill.svg)
[![hits](http://hits.dwyl.com/Sylvain59650/find-polyfill.svg)](http://hits.dwyl.com/Sylvain59650/find-polyfill)
</div>

Implements the find method on Array if not already implemented.

Need for Internet Explorer.

No need for Nodejs, Chrome & Firefox

Don't no about others browsers.

## References the script

    <script src="node_modules/find-polyfill/distrib/find-polyfill.min.js"></script>
## Example

    var arr=[0,1,2,3,4,5,6];

    arr.find(x=>x==5);  // 5

    // for IE, you must write something like this:
    arr.find(function(x) { return x===5;}) // 5

## License
The license is MIT

Author: [Sylvain Longepée](https://github.com/Sylvain59650)

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