stream-chunker
Advanced tools
Comparing version 1.1.3 to 1.1.4
{ | ||
"name": "stream-chunker", | ||
"version": "1.1.3", | ||
"version": "1.1.4", | ||
"description": "A transform stream which chunks incoming data into chunkSize byte chunks", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -28,3 +28,3 @@ # stream-chunker | ||
fs.createReadStream('/someFile') | ||
.pipe(chunks(16)) | ||
.pipe(chunker(16)) | ||
.pipe(somethingThatExpects16ByteChunks()); | ||
@@ -31,0 +31,0 @@ ``` |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
8320