@@ -9,7 +9,7 @@ Deflate/Inflate. It can be accessed using:
9
9
const zlib = require (' zlib' );
10
10
```
11
11
12
- Compressing or decompressing a stream (such as a file) can be accomplished by
12
+ Compressing or decompressing a stream (such as a file) can be accomplished by
13
13
piping the source stream data through a ` zlib ` stream into a destination stream:
14
14
15
15
``` js
@@ -46,12 +46,12 @@ zlib.unzip(buffer, (err, buffer) => {
46
46
## Compressing HTTP requests and responses
47
47
48
48
The ` zlib ` module can be used to implement support for the ` gzip ` and ` deflate `
49
- content-encoding mechanisms defined by
49
+ content-encoding mechanisms defined by
50
50
[ HTTP] ( https://tools.ietf.org/html/rfc7230#section-4.2 ) .
51
51
52
52
The HTTP [ ` Accept-Encoding ` ] [ ] header is used within an http request to identify
53
- the compression encodings accepted by the client. The [ ` Content-Encoding ` ] [ ]
54
- header is used to identify the compression encodings actually applied to a
53
+ the compression encodings accepted by the client. The [ ` Content-Encoding ` ] [ ]
54
+ header is used to identify the compression encodings actually applied to a
55
55
message.
56
56
57
57
** Note: the examples given below are drastically simplified to show
@@ -230,7 +230,7 @@ not surprising. This section is taken almost directly from the
230
230
[ zlib documentation] [ ] . See < http://zlib.net/manual.html#Constants > for more
231
231
details.
232
232
233
- * Note* : Previously, the constants were available directly from
233
+ * Note* : Previously, the constants were available directly from
234
234
` require('zlib') ` , for instance ` zlib.Z_NO_FLUSH ` . Accessing the constants
235
235
directly from the module is currently still possible but should be considered
236
236
deprecated.
@@ -444,8 +444,8 @@ Returns a new [Unzip][] object with an [options][].
444
444
445
445
<!-- type=misc-->
446
446
447
- All of these take a [ Buffer] [ ] or string as the first argument, an optional
448
- second argument to supply options to the ` zlib ` classes and will call the
447
+ All of these take a [ Buffer] [ ] or string as the first argument, an optional
448
+ second argument to supply options to the ` zlib ` classes and will call the
449
449
supplied callback with ` callback(error, result) ` .
450
450
451
451
Every method has a ` *Sync ` counterpart, which accept the same arguments, but
0 commit comments