gitextract_csbhc0ta/ ├── .gitignore ├── LICENSE.md ├── browser-test/ │ ├── index.js │ └── main.js ├── package.json ├── polyfills/ │ ├── LICENSE-browserify-fs.txt │ ├── LICENSE-buffer-es6.txt │ ├── LICENSE-crypto-browserify.txt │ ├── LICENSE-process-es6.txt │ ├── assert.js │ ├── browserify-fs.js │ ├── buffer-es6.js │ ├── console.js │ ├── constants.js │ ├── crypto-browserify.js │ ├── domain.js │ ├── empty.js │ ├── events.js │ ├── global.js │ ├── http-lib/ │ │ ├── capability.js │ │ ├── request.js │ │ ├── response.js │ │ └── to-arraybuffer.js │ ├── http.js │ ├── inherits.js │ ├── os.js │ ├── path.js │ ├── process-es6.js │ ├── punycode.js │ ├── qs.js │ ├── readable-stream/ │ │ ├── buffer-list.js │ │ ├── duplex.js │ │ ├── passthrough.js │ │ ├── readable.js │ │ ├── transform.js │ │ └── writable.js │ ├── setimmediate.js │ ├── stream.js │ ├── string-decoder.js │ ├── timers.js │ ├── tty.js │ ├── url.js │ ├── util.js │ ├── vm.js │ ├── zlib-lib/ │ │ ├── LICENSE │ │ ├── adler32.js │ │ ├── binding.js │ │ ├── crc32.js │ │ ├── deflate.js │ │ ├── inffast.js │ │ ├── inflate.js │ │ ├── inftrees.js │ │ ├── messages.js │ │ ├── trees.js │ │ ├── utils.js │ │ └── zstream.js │ └── zlib.js ├── readme.md ├── rollup.config.js ├── scripts/ │ ├── build-constants.js │ └── build-polyfills.js ├── src/ │ ├── index.ts │ └── modules.ts ├── test/ │ ├── examples/ │ │ ├── assert.js │ │ ├── constants.js │ │ ├── crypto.js │ │ ├── domain.js │ │ ├── events.js │ │ ├── os.js │ │ ├── path.js │ │ ├── stream.js │ │ ├── string-decoder.js │ │ ├── url-format.js │ │ ├── url-parse.js │ │ └── zlib.js │ └── index.js └── tsconfig.json