# interlace-arrays

> Interlace arrays

Latest version **1.0.0** (published 2016-07-13) · ISC license · 0 weekly downloads

## Install

```sh
npm install interlace-arrays
pnpm add interlace-arrays
yarn add interlace-arrays
bun add interlace-arrays
```

## 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-13 |
| First published | 2016-07-13 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 1 |
| Author | Andreas Brekken |
| Maintainers | abrkn |

## Links

- npm: https://www.npmjs.com/package/interlace-arrays
- Repository: https://github.com/abrkn/interlace-arrays
- Homepage: https://github.com/abrkn/interlace-arrays#readme
- Issues: https://github.com/abrkn/interlace-arrays/issues
- npm.io page: https://npm.io/package/interlace-arrays

## Recent versions

- 1.0.0 (latest) — 2016-07-13

## README

# interlace-arrays

[![Build Status](https://travis-ci.org/abrkn/interlace-arrays.svg?branch=master)](https://travis-ci.org/abrkn/interlace-arrays)

Interlace arrays

```javascript
$ node
var interlace = require('interlace-arrays');
var odd = [1, 3, 5, 7, 9];
var even = [2, 4, 6, 8, 10, 12];
var interlaced = interlace([odd, even]);
// [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12 ]
```

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