# arr-helper-functions

> Misc. functions for finding elements in arrays, sorting, and more

Latest version **2.1.1** (published 2023-09-27) · MIT license · 0 weekly downloads

## Install

```sh
npm install arr-helper-functions
pnpm add arr-helper-functions
yarn add arr-helper-functions
bun add arr-helper-functions
```

## Health

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

Positive: has types; esm support; no vulnerabilities; high quality score.

Warnings: low downloads.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 2.1.1 |
| Published | 2023-09-27 |
| First published | 2021-05-30 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | ESM + CommonJS |
| Node | >=16 |
| Dependencies | 1 |
| Unpacked size | 44.4 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Alberto Rico |
| Maintainers | alrico88 |
| Keywords | array, search, multiple, helper |

## Links

- npm: https://www.npmjs.com/package/arr-helper-functions
- Repository: https://github.com/alrico88/arr-helper-functions
- Homepage: https://github.com/alrico88/arr-helper-functions#readme
- Issues: https://github.com/alrico88/arr-helper-functions/issues
- npm.io page: https://npm.io/package/arr-helper-functions

## Dependencies (1)

- [array-types-counter](https://npm.io/package/array-types-counter.md) ^1.0.1

## Alternatives

- [lodash.assign](https://npm.io/package/lodash.assign.md) — 2.3M weekly downloads
- [lodash.chunk](https://npm.io/package/lodash.chunk.md) — 1.8M weekly downloads
- [react-native-ios-utilities](https://npm.io/package/react-native-ios-utilities.md) — 138.5K weekly downloads
- [@technically/lodash](https://npm.io/package/@technically/lodash.md) — 50.9K weekly downloads
- [@fluid-topics/ft-icon](https://npm.io/package/@fluid-topics/ft-icon.md) — 20.6K weekly downloads

## Recent versions

- 2.1.1 (latest) — 2023-09-27
- 2.1.0 — 2023-09-27
- 2.0.1 — 2023-09-01
- 2.0.0 — 2023-08-31
- 1.1.0 — 2021-06-26
- 1.0.1 — 2021-06-09
- 1.0.0 — 2021-05-30

## README

# arr-helper-functions

Misc. functions for finding elements in arrays, sorting, and more

## Installation

Using npm, `npm i arr-helper-functions`.

Using yarn, `yarn add arr-helper-functions`.

## Usage

Using `import`

```javascript
import { isInArray } from 'arr-helper-functions';

isInArray(2, [3, 2, 1]) // true
```

In a CommonJS environment

```javascript
const { filterFalsyValues } = require('arr-helper-functions');

filterFalsyValues([1, null, 2, false]) // [1, 2]
```

## Documentation

See [DOCS](./docs/modules.md)

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