# pull-sort

> sort a pull-stream, necessarily, this buffers the stream and then streams the sorted stream.

Latest version **1.0.2** (published 2018-11-01) · MIT license · 0 weekly downloads

## Install

```sh
npm install pull-sort
pnpm add pull-sort
yarn add pull-sort
bun add pull-sort
```

## 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 | 2018-11-01 |
| First published | 2016-03-28 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 2 |
| Unpacked size | 2.9 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 1 |
| Author | Dominic Tarr |
| Maintainers | dominictarr |

## Links

- npm: https://www.npmjs.com/package/pull-sort
- Repository: https://github.com/dominictarr/pull-sort
- Issues: https://github.com/dominictarr/pull-sort/issues
- npm.io page: https://npm.io/package/pull-sort

## Dependencies (2)

- [pull-defer](https://npm.io/package/pull-defer.md) ^0.2.3
- [pull-stream](https://npm.io/package/pull-stream.md) ^3.6.9

## Recent versions

- 1.0.2 (latest) — 2018-11-01
- 1.0.1 — 2017-06-27
- 1.0.0 — 2016-03-28

## README

# pull-sort

sort a pull-stream, necessarily, this buffers the stream and then streams
the sorted stream.

## example

``` js
var Sort = require('pull-sort')
var pull = require('pull-stream/pull')

pull(
  source,
  Sort(compare),
  sink
)

```

`Sort` takes an optional comparitor, the same signature as `Array#sort` 

## License

MIT

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