@@ -110,7 +110,7 @@ http.createServer((request, response) => {
110
110
}
111
111
112
112
// Note: This is not a conformant accept-encoding parser.
113
- // See http ://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.3
113
+ // See https ://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.3
114
114
if (/ \b deflate\b / .test (acceptEncoding)) {
115
115
response .writeHead (200 , { ' Content-Encoding' : ' deflate' });
116
116
raw .pipe (zlib .createDeflate ()).pipe (response);
@@ -235,7 +235,7 @@ All of the constants defined in `zlib.h` are also defined on
235
235
` require('zlib').constants ` . In the normal course of operations, it will not be
236
236
necessary to use these constants. They are documented so that their presence is
237
237
not surprising. This section is taken almost directly from the
238
- [ zlib documentation] [ ] . See < http ://zlib.net/manual.html#Constants> for more
238
+ [ zlib documentation] [ ] . See < https ://zlib.net/manual.html#Constants> for more
239
239
details.
240
240
241
241
* Note* : Previously, the constants were available directly from
@@ -313,7 +313,7 @@ ignored by the decompression classes.
313
313
* ` info ` {boolean} (If ` true ` , returns an object with ` buffer ` and ` engine ` )
314
314
315
315
See the description of ` deflateInit2 ` and ` inflateInit2 ` at
316
- < http ://zlib.net/manual.html#Advanced> for more information on these.
316
+ < https ://zlib.net/manual.html#Advanced> for more information on these.
317
317
318
318
## Class: zlib.Deflate
319
319
<!-- YAML
@@ -723,4 +723,4 @@ Decompress a chunk of data with [Unzip][].
723
723
[ Unzip ] : #zlib_class_zlib_unzip
724
724
[ `UV_THREADPOOL_SIZE` ] : cli.html#cli_uv_threadpool_size_size
725
725
[ options ] : #zlib_class_options
726
- [ zlib documentation ] : http ://zlib.net/manual.html#Constants
726
+ [ zlib documentation ] : https ://zlib.net/manual.html#Constants
0 commit comments