# arrayzipper

> zip two or more arrays to one

Latest version **1.0.0** (published 2016-07-06) · MIT license · 0 weekly downloads

## Install

```sh
npm install arrayzipper
pnpm add arrayzipper
yarn add arrayzipper
bun add arrayzipper
```

## 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.0 |
| Published | 2016-07-06 |
| First published | 2016-07-03 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Christian Heyn |
| Maintainers | christianheyn |
| Keywords | zipper, concat, array |

## Links

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

## Alternatives

- [lodash.startswith](https://npm.io/package/lodash.startswith.md) — 769.7K weekly downloads
- [@tarojs/service](https://npm.io/package/@tarojs/service.md) — 33.9K weekly downloads
- [io.extendreality.tilia.indicators.spatialtargets.unity](https://npm.io/package/io.extendreality.tilia.indicators.spatialtargets.unity.md) — 131 weekly downloads
- [@rtarojs/taro](https://npm.io/package/@rtarojs/taro.md) — 90 weekly downloads
- [node-branch-io](https://npm.io/package/node-branch-io.md) — 50 weekly downloads

## Recent versions

- 1.0.0 (latest) — 2016-07-06
- 0.0.3 — 2016-07-03
- 0.0.2 — 2016-07-03
- 0.0.1 — 2016-07-03

## README

# arrayZipper

[![Build Status](https://travis-ci.org/christianheyn/arrayzipper.svg?branch=master)](https://travis-ci.org/christianheyn/arrayzipper)
[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg)](http://commitizen.github.io/cz-cli/)


**zip two or more arrays to one**


_Usage:_

```js
var arrayZipper = require('arrayzipper'),
	myArrays = [
        [0, 3, 6, 8],
        [1, 4, 7],
        [2, 5]
    ],
    resultArray = arrayZipper(myArrays);
    console.log(resultArray);// -> [0, 1, 2, 3, 4, 5, 6, 7, 8]
```

```js
var arrayZipper = require('arrayzipper'),
	myArrays = [
        ['h', 'l', 'w', 'r', 'd', '!'],
        ['e', 'o',],
        ['l', ' ', 'o', 'l']
    ],
    resultArray = arrayZipper(myArrays);
    console.log(resultArray);// -> [ 'h', 'e', 'l', 'l', 'o', ' ', 'w', 'o', 'r', 'l', 'd', '!' ]
```

___


_This repo is `commitizen` friendly. Find more information about that [here](http://commitizen.github.io/cz-cli/)._

**Author**
[Christian Heyn](https://github.com/christianheyn)

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