# split-every

> split a list in length-n pieces

Latest version **0.0.1** (published 2012-07-25) · 0 weekly downloads

## Install

```sh
npm install split-every
pnpm add split-every
yarn add split-every
bun add split-every
```

## Health

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

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.1 |
| Published | 2012-07-25 |
| First published | 2012-07-25 |
| Weekly downloads | 0 |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 1 |
| Author | Raynos |
| Maintainers | raynos |

## Links

- npm: https://www.npmjs.com/package/split-every
- Repository: https://github.com/Colingo/split-every
- Issues: https://github.com/Colingo/split-every/issues
- npm.io page: https://npm.io/package/split-every

## Recent versions

- 0.0.1 (latest) — 2012-07-25

## README

# split-every [![build status][1]][2]

split a list in length-n pieces

## Example

    var splitEvery = require("split-every")
        , assert = require("assert")

    var listOfTuples = splitEvery(2, [1,2,3,4,5,6])

    assert.equal(listOfTuples, [[1,2], [3,4], [5,6]])

## Installation

`npm install split-every`

## Tests

`make test`

## Contributors

 - Raynos

## MIT Licenced

  [1]: https://secure.travis-ci.org/Colingo/split-every.png
  [2]: http://travis-ci.org/Colingo/split-every

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