mirror of
https://github.com/arthur-pbty/portfolio2023.git
synced 2026-06-05 00:06:20 +02:00
13 lines
397 B
JavaScript
13 lines
397 B
JavaScript
var hpack = exports;
|
|
|
|
hpack.utils = require('./hpack/utils');
|
|
hpack.huffman = require('./hpack/huffman');
|
|
hpack['static-table'] = require('./hpack/static-table');
|
|
hpack.table = require('./hpack/table');
|
|
|
|
hpack.decoder = require('./hpack/decoder');
|
|
hpack.decompressor = require('./hpack/decompressor');
|
|
|
|
hpack.encoder = require('./hpack/encoder');
|
|
hpack.compressor = require('./hpack/compressor');
|