🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more

multi-sort-stream

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

multi-sort-stream

merge multiple sorted streams into a single sorted stream

1.0.4
latest
100

Supply Chain Security

100

Vulnerability

87

Quality

76

Maintenance

100

License

Misc. License Issues

License

(Experimental) A package's licensing information has fine-grained problems.

Found 1 instance in 1 package

Version published
Weekly downloads
228K
9.79%
Maintainers
1
Weekly downloads
 
Created

multi-sort-stream

merge multiple sorted streams into a single sorted stream

example

var multiSort = require('multi-sort-stream')
var { Readable, Transform, pipeline } = require('stream')
var a = Readable.from([5,10,15])
var b = Readable.from([3,20,50,55])
var c = Readable.from([17,25])

pipeline(
  multiSort([a,b,c], (a,b) => a < b ? -1 : +1),
  Transform({
    writableObjectMode: true,
    transform: (row,enc,next) => next(null, JSON.stringify(row)+'\n'),
  }),
  process.stdout,
  (err) => { if (err) console.error(err) }
)

output:

3
5
10
15
17
20
25
50
55

api

var multiSort = require('multi-sort-stream')

var stream = multiSort(streams, opts)

Create a readable stream of sorted output from an array of sorted readable streams.

  • opts.compare(a,b) - comparison function (return -1 or +1)

If opts is a function, it will be used as the opts.compare function.

install

npm install multi-sort-stream

license

bsd

FAQs

Package last updated on 04 Jul 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts