# @pelevesque/is-array-in-array

> Checks if an array is in an array.

Latest version **1.0.2** (published 2020-02-06) · MIT license · 0 weekly downloads

## Install

```sh
npm install @pelevesque/is-array-in-array
pnpm add @pelevesque/is-array-in-array
yarn add @pelevesque/is-array-in-array
bun add @pelevesque/is-array-in-array
```

## 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.2 |
| Published | 2020-02-06 |
| First published | 2018-07-02 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Node | >=9.0.0 |
| Dependencies | 0 |
| Unpacked size | 4.3 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | Pierre-Emmanuel Lévesque |
| Maintainers | pelevesque |
| Keywords | array, contain |

## Links

- npm: https://www.npmjs.com/package/@pelevesque/is-array-in-array
- Repository: https://github.com/pelevesque/is-array-in-array
- Homepage: https://github.com/pelevesque/is-array-in-array#readme
- Issues: https://github.com/pelevesque/is-array-in-array/issues
- npm.io page: https://npm.io/package/@pelevesque/is-array-in-array

## Recent versions

- 1.0.2 (latest) — 2020-02-06
- 1.0.1 — 2019-06-16
- 1.0.0 — 2019-06-16
- 0.0.3 — 2019-05-30
- 0.0.2 — 2018-08-01
- 0.0.1 — 2018-07-02

## README

[![Build Status](https://travis-ci.org/pelevesque/is-array-in-array.svg?branch=master)](https://travis-ci.org/pelevesque/is-array-in-array)
[![Coverage Status](https://coveralls.io/repos/github/pelevesque/is-array-in-array/badge.svg?branch=master)](https://coveralls.io/github/pelevesque/is-array-in-array?branch=master)
[![JavaScript Style Guide](https://img.shields.io/badge/code_style-standard-brightgreen.svg)](https://standardjs.com)

# is-array-in-array

Checks if an array is in an array.

## Node Repository

https://www.npmjs.com/package/@pelevesque/is-array-in-array

## Installation

`npm install @pelevesque/is-array-in-array`

## Tests

Command                      | Description
---------------------------- | ------------
`npm test` or `npm run test` | All Tests Below
`npm run cover`              | Standard Style
`npm run standard`           | Coverage
`npm run unit`               | Unit Tests

## Usage

```js
const isArrayInArray = require('@pelevesque/is-array-in-array')
```

```js
const arr = [1, 1]
const arrToCheckIn = [[1, 0], [1, 1], [1, 2]]
const result = isArrayInArray(arr, arrToCheckIn)
// result === true
```

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