We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 80d7b6e commit 61da657Copy full SHA for 61da657
lib/zlib.js
@@ -92,9 +92,7 @@ const codes = {
92
Z_VERSION_ERROR: constants.Z_VERSION_ERROR
93
};
94
95
-const ckeys = ObjectKeys(codes);
96
-for (let ck = 0; ck < ckeys.length; ck++) {
97
- const ckey = ckeys[ck];
+for (const ckey of ObjectKeys(codes)) {
98
codes[codes[ckey]] = ckey;
99
}
100
@@ -912,9 +910,7 @@ ObjectDefineProperties(module.exports, {
912
910
913
911
// These should be considered deprecated
914
// expose all the zlib constants
915
-const bkeys = ObjectKeys(constants);
916
-for (let bk = 0; bk < bkeys.length; bk++) {
917
- const bkey = bkeys[bk];
+for (const bkey of ObjectKeys(constants)) {
918
if (bkey.startsWith('BROTLI')) continue;
919
ObjectDefineProperty(module.exports, bkey, {
920
enumerable: false, value: constants[bkey], writable: false
0 commit comments