|
1 | 1 | "use strict"
|
2 | 2 |
|
3 |
| -const { READ } = require("@eslint-community/eslint-utils") |
| 3 | +const { CALL, READ } = require("@eslint-community/eslint-utils") |
4 | 4 |
|
5 | 5 | /** @type {import('../types.js').SupportVersionTraceMap} */
|
6 | 6 | const zlib = {
|
@@ -33,15 +33,42 @@ const zlib = {
|
33 | 33 | inflateRawSync: { [READ]: { supported: ["0.11.12"] } },
|
34 | 34 | unzip: { [READ]: { supported: ["0.6.0"] } },
|
35 | 35 | unzipSync: { [READ]: { supported: ["0.11.12"] } },
|
36 |
| - BrotliCompress: { [READ]: { supported: ["11.7.0", "10.16.0"] } }, |
37 |
| - BrotliDecompress: { [READ]: { supported: ["11.7.0", "10.16.0"] } }, |
38 |
| - Deflate: { [READ]: { supported: ["0.5.8"] } }, |
39 |
| - DeflateRaw: { [READ]: { supported: ["0.5.8"] } }, |
40 |
| - Gunzip: { [READ]: { supported: ["0.5.8"] } }, |
41 |
| - Gzip: { [READ]: { supported: ["0.5.8"] } }, |
42 |
| - Inflate: { [READ]: { supported: ["0.5.8"] } }, |
43 |
| - InflateRaw: { [READ]: { supported: ["0.5.8"] } }, |
44 |
| - Unzip: { [READ]: { supported: ["0.5.8"] } }, |
| 36 | + BrotliCompress: { |
| 37 | + [CALL]: { deprecated: ["22.9.0"] }, |
| 38 | + [READ]: { supported: ["11.7.0", "10.16.0"] }, |
| 39 | + }, |
| 40 | + BrotliDecompress: { |
| 41 | + [CALL]: { deprecated: ["22.9.0"] }, |
| 42 | + [READ]: { supported: ["11.7.0", "10.16.0"] }, |
| 43 | + }, |
| 44 | + Deflate: { |
| 45 | + [CALL]: { deprecated: ["22.9.0"] }, |
| 46 | + [READ]: { supported: ["0.5.8"] }, |
| 47 | + }, |
| 48 | + DeflateRaw: { |
| 49 | + [CALL]: { deprecated: ["22.9.0"] }, |
| 50 | + [READ]: { supported: ["0.5.8"] }, |
| 51 | + }, |
| 52 | + Gunzip: { |
| 53 | + [CALL]: { deprecated: ["22.9.0"] }, |
| 54 | + [READ]: { supported: ["0.5.8"] }, |
| 55 | + }, |
| 56 | + Gzip: { |
| 57 | + [CALL]: { deprecated: ["22.9.0"] }, |
| 58 | + [READ]: { supported: ["0.5.8"] }, |
| 59 | + }, |
| 60 | + Inflate: { |
| 61 | + [CALL]: { deprecated: ["22.9.0"] }, |
| 62 | + [READ]: { supported: ["0.5.8"] }, |
| 63 | + }, |
| 64 | + InflateRaw: { |
| 65 | + [CALL]: { deprecated: ["22.9.0"] }, |
| 66 | + [READ]: { supported: ["0.5.8"] }, |
| 67 | + }, |
| 68 | + Unzip: { |
| 69 | + [CALL]: { deprecated: ["22.9.0"] }, |
| 70 | + [READ]: { supported: ["0.5.8"] }, |
| 71 | + }, |
45 | 72 | }
|
46 | 73 |
|
47 | 74 | /** @type {import('../types.js').SupportVersionTraceMap} */
|
|
0 commit comments