1.0.10 • Published 9 years ago

highland-unix-sort v1.0.10

Weekly downloads
-
License
MIT
Repository
-
Last release
9 years ago

Highland Unix Sort

A rewrite of https://github.com/Clever/unix-sort that uses Highland. This performs a sort using the unix sort command.

Install

npm install highland-unix-sort

Usage

var _ = require('highland');
var sort = require('highland-unix-sort');

_([
  {name: 'sam'},
  {name: 'joe'},
  {},
  {name: 'alice'}
])
.through(sort(['name']))
.toArray(function(arr) { console.log(array); })
// output is [ {}, { name: 'alice' }, { name: 'joe' }, { name: 'sam' } ]
1.0.10

9 years ago

1.0.9

9 years ago

1.0.8

9 years ago

1.0.7

9 years ago

1.0.6

9 years ago

1.0.5

9 years ago

1.0.4

9 years ago

1.0.3

9 years ago

1.0.2

9 years ago

1.0.1

9 years ago

1.0.0

9 years ago