sort-stream2:流的 Array.prototype.sort

时间:2024-07-24 18:59:42
【文件属性】:

文件名称:sort-stream2:流的 Array.prototype.sort

文件大小:3KB

文件格式:ZIP

更新时间:2024-07-24 18:59:42

JavaScript

排序流2 Array.prototype.sort 用于流,刷新的 。 小心使用,因为排序需要缓冲整个流。 例子 var sort = require ( "sort-stream2" ) var through = require ( "through2" ) var objs = through . obj ( ) objs . write ( { id : 3 } ) objs . write ( { id : 2 } ) objs . write ( { id : 1 } ) objs . end ( ) objs . pipe ( sort ( function ( a , b ) { return a . id - b . id } ) ) . on ( "data" , console . log ) // {id: 1} // {id: 2} // {id: 3


【文件预览】:
sort-stream2-master
----.gitignore(587B)
----package.json(530B)
----.travis.yml(36B)
----LICENSE(1KB)
----index.js(274B)
----test.js(488B)
----README.md(662B)

网友评论