mirror of
https://github.com/denoland/std.git
synced 2024-11-22 04:59:05 +00:00
fix(node): add missing named zlib exports (#2435)
Some of Node's named zlib exports were only being exported as part of the default export. This commit adds the remaining named exports. Fixes: https://github.com/denoland/deno_std/issues/2432
This commit is contained in:
parent
eb4f512cc4
commit
f26ad9954e
32
node/zlib.ts
32
node/zlib.ts
@ -120,3 +120,35 @@ export default {
|
||||
unzip,
|
||||
unzipSync,
|
||||
};
|
||||
|
||||
export {
|
||||
codes,
|
||||
createDeflate,
|
||||
createDeflateRaw,
|
||||
createGunzip,
|
||||
createGzip,
|
||||
createInflate,
|
||||
createInflateRaw,
|
||||
createUnzip,
|
||||
Deflate,
|
||||
deflate,
|
||||
DeflateRaw,
|
||||
deflateRaw,
|
||||
deflateRawSync,
|
||||
deflateSync,
|
||||
Gunzip,
|
||||
gunzip,
|
||||
gunzipSync,
|
||||
Gzip,
|
||||
gzip,
|
||||
gzipSync,
|
||||
Inflate,
|
||||
inflate,
|
||||
InflateRaw,
|
||||
inflateRaw,
|
||||
inflateRawSync,
|
||||
inflateSync,
|
||||
Unzip,
|
||||
unzip,
|
||||
unzipSync,
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user