节点直通截断截断流的最后N个字节的PassThrough流。例如,假设您将一个文件通过管道传输到deflate流中,并且您想删除末尾的0x00 0xff。您不知道流将提前多长时间,但您知道需要删除最后4个字节。该模块通过保持足够的额外缓冲区来工作,以便在刷新流时至少缓冲N个字节,N是您希望截断的字节数。用法var PassThroughTruncate = require('passthrough-truncate');
myOtherStream.pipe(new PassThroughTruncate(4)).pipe(process.stdout);
截断流的最后N个字节
文件列表
node-passthrough-truncate-master.zip
(预估有个7文件)
node-passthrough-truncate-master
.gitignore
24B
package.json
819B
.travis.yml
176B
LICENSE
1KB
index.js
1KB
test.js
2KB
README.md
2KB
暂无评论