@corellium/corellium-cli 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- package/.eslintrc.js +38 -0
- package/.gitlab-ci.yml +21 -0
- package/.husky/pre-commit +4 -0
- package/.nvmrc +1 -0
- package/.prettierrc.js +21 -0
- package/Jenkinsfile +3 -0
- package/README.md +46 -0
- package/docs/OVERVIEW.md +274 -0
- package/example/WebPlayerSample.js +263 -0
- package/index.js +21 -0
- package/index.sh +5 -0
- package/jenkinsbuild/build.sh +70 -0
- package/lint-staged.config.js +19 -0
- package/node_modules/@babel/cli/LICENSE +22 -0
- package/node_modules/@babel/cli/README.md +19 -0
- package/node_modules/@babel/cli/bin/babel-external-helpers.js +3 -0
- package/node_modules/@babel/cli/bin/babel.js +3 -0
- package/node_modules/@babel/cli/index.js +1 -0
- package/node_modules/@babel/cli/lib/babel/dir.js +285 -0
- package/node_modules/@babel/cli/lib/babel/file.js +273 -0
- package/node_modules/@babel/cli/lib/babel/index.js +20 -0
- package/node_modules/@babel/cli/lib/babel/options.js +285 -0
- package/node_modules/@babel/cli/lib/babel/util.js +181 -0
- package/node_modules/@babel/cli/lib/babel/watcher.js +162 -0
- package/node_modules/@babel/cli/lib/babel-external-helpers.js +43 -0
- package/node_modules/@babel/cli/node_modules/commander/CHANGELOG.md +436 -0
- package/node_modules/@babel/cli/node_modules/commander/LICENSE +22 -0
- package/node_modules/@babel/cli/node_modules/commander/Readme.md +713 -0
- package/node_modules/@babel/cli/node_modules/commander/index.js +1649 -0
- package/node_modules/@babel/cli/node_modules/commander/package.json +76 -0
- package/node_modules/@babel/cli/node_modules/commander/typings/index.d.ts +311 -0
- package/node_modules/@babel/cli/node_modules/make-dir/index.d.ts +39 -0
- package/node_modules/@babel/cli/node_modules/make-dir/index.js +139 -0
- package/node_modules/@babel/cli/node_modules/make-dir/license +9 -0
- package/node_modules/@babel/cli/node_modules/make-dir/package.json +94 -0
- package/node_modules/@babel/cli/node_modules/make-dir/readme.md +123 -0
- package/node_modules/@babel/cli/node_modules/pify/index.js +68 -0
- package/node_modules/@babel/cli/node_modules/pify/license +9 -0
- package/node_modules/@babel/cli/node_modules/pify/package.json +86 -0
- package/node_modules/@babel/cli/node_modules/pify/readme.md +145 -0
- package/node_modules/@babel/cli/node_modules/semver/CHANGELOG.md +39 -0
- package/node_modules/@babel/cli/node_modules/semver/LICENSE +15 -0
- package/node_modules/@babel/cli/node_modules/semver/README.md +412 -0
- package/node_modules/@babel/cli/node_modules/semver/bin/semver +160 -0
- package/node_modules/@babel/cli/node_modules/semver/package.json +63 -0
- package/node_modules/@babel/cli/node_modules/semver/range.bnf +16 -0
- package/node_modules/@babel/cli/node_modules/semver/semver.js +1483 -0
- package/node_modules/@babel/cli/node_modules/slash/index.js +11 -0
- package/node_modules/@babel/cli/node_modules/slash/license +9 -0
- package/node_modules/@babel/cli/node_modules/slash/package.json +69 -0
- package/node_modules/@babel/cli/node_modules/slash/readme.md +44 -0
- package/node_modules/@babel/cli/package.json +91 -0
- package/node_modules/@corellium/client-api/README.md +209 -0
- package/node_modules/@corellium/client-api/dist/ApiClient.js +780 -0
- package/node_modules/@corellium/client-api/dist/api/CorelliumApi.js +1744 -0
- package/node_modules/@corellium/client-api/dist/index.js +295 -0
- package/node_modules/@corellium/client-api/dist/model/ApiConflictError.js +114 -0
- package/node_modules/@corellium/client-api/dist/model/ApiError.js +101 -0
- package/node_modules/@corellium/client-api/dist/model/ApiNotFoundError.js +111 -0
- package/node_modules/@corellium/client-api/dist/model/ApiToken.js +78 -0
- package/node_modules/@corellium/client-api/dist/model/Bit.js +50 -0
- package/node_modules/@corellium/client-api/dist/model/Credentials.js +91 -0
- package/node_modules/@corellium/client-api/dist/model/Firmware.js +208 -0
- package/node_modules/@corellium/client-api/dist/model/GpioStateDefinition.js +93 -0
- package/node_modules/@corellium/client-api/dist/model/Image.js +249 -0
- package/node_modules/@corellium/client-api/dist/model/Instance.js +313 -0
- package/node_modules/@corellium/client-api/dist/model/InstanceBootOptions.js +134 -0
- package/node_modules/@corellium/client-api/dist/model/InstanceConsoleEndpoint.js +76 -0
- package/node_modules/@corellium/client-api/dist/model/InstanceCreateOptions.js +224 -0
- package/node_modules/@corellium/client-api/dist/model/InstanceNetmonState.js +75 -0
- package/node_modules/@corellium/client-api/dist/model/InstanceReturn.js +92 -0
- package/node_modules/@corellium/client-api/dist/model/InstanceServices.js +77 -0
- package/node_modules/@corellium/client-api/dist/model/InstanceStartOptions.js +76 -0
- package/node_modules/@corellium/client-api/dist/model/InstanceState.js +64 -0
- package/node_modules/@corellium/client-api/dist/model/InstanceStopOptions.js +76 -0
- package/node_modules/@corellium/client-api/dist/model/Model.js +165 -0
- package/node_modules/@corellium/client-api/dist/model/ModelSoftware.js +122 -0
- package/node_modules/@corellium/client-api/dist/model/PeripheralsData.js +147 -0
- package/node_modules/@corellium/client-api/dist/model/Project.js +122 -0
- package/node_modules/@corellium/client-api/dist/model/ProjectQuota.js +93 -0
- package/node_modules/@corellium/client-api/dist/model/ProjectSettings.js +93 -0
- package/node_modules/@corellium/client-api/dist/model/ProjectUsage.js +102 -0
- package/node_modules/@corellium/client-api/dist/model/Snapshot.js +145 -0
- package/node_modules/@corellium/client-api/dist/model/SnapshotCreationOptions.js +79 -0
- package/node_modules/@corellium/client-api/dist/model/SnapshotStatus.js +84 -0
- package/node_modules/@corellium/client-api/dist/model/Token.js +88 -0
- package/node_modules/@corellium/client-api/dist/model/UserError.js +114 -0
- package/node_modules/@corellium/client-api/dist/model/V1SetStateBody.js +80 -0
- package/node_modules/@corellium/client-api/dist/model/VolumeOptions.js +94 -0
- package/node_modules/@corellium/client-api/dist/model/VpnDefinition.js +84 -0
- package/node_modules/@corellium/client-api/package.json +75 -0
- package/node_modules/@corellium/corellium-api/README.md +1210 -0
- package/node_modules/@corellium/corellium-api/node_modules/form-data/License +19 -0
- package/node_modules/@corellium/corellium-api/node_modules/form-data/README.md.bak +356 -0
- package/node_modules/@corellium/corellium-api/node_modules/form-data/Readme.md +356 -0
- package/node_modules/@corellium/corellium-api/node_modules/form-data/index.d.ts +62 -0
- package/node_modules/@corellium/corellium-api/node_modules/form-data/lib/browser.js +2 -0
- package/node_modules/@corellium/corellium-api/node_modules/form-data/lib/form_data.js +498 -0
- package/node_modules/@corellium/corellium-api/node_modules/form-data/lib/populate.js +10 -0
- package/node_modules/@corellium/corellium-api/node_modules/form-data/package.json +104 -0
- package/node_modules/@corellium/corellium-api/node_modules/uuid/AUTHORS +5 -0
- package/node_modules/@corellium/corellium-api/node_modules/uuid/CHANGELOG.md +119 -0
- package/node_modules/@corellium/corellium-api/node_modules/uuid/LICENSE.md +21 -0
- package/node_modules/@corellium/corellium-api/node_modules/uuid/README.md +276 -0
- package/node_modules/@corellium/corellium-api/node_modules/uuid/bin/uuid +65 -0
- package/node_modules/@corellium/corellium-api/node_modules/uuid/index.js +8 -0
- package/node_modules/@corellium/corellium-api/node_modules/uuid/lib/bytesToUuid.js +26 -0
- package/node_modules/@corellium/corellium-api/node_modules/uuid/lib/md5-browser.js +216 -0
- package/node_modules/@corellium/corellium-api/node_modules/uuid/lib/md5.js +25 -0
- package/node_modules/@corellium/corellium-api/node_modules/uuid/lib/rng-browser.js +34 -0
- package/node_modules/@corellium/corellium-api/node_modules/uuid/lib/rng.js +8 -0
- package/node_modules/@corellium/corellium-api/node_modules/uuid/lib/sha1-browser.js +89 -0
- package/node_modules/@corellium/corellium-api/node_modules/uuid/lib/sha1.js +25 -0
- package/node_modules/@corellium/corellium-api/node_modules/uuid/lib/v35.js +57 -0
- package/node_modules/@corellium/corellium-api/node_modules/uuid/package.json +103 -0
- package/node_modules/@corellium/corellium-api/node_modules/uuid/v1.js +109 -0
- package/node_modules/@corellium/corellium-api/node_modules/uuid/v3.js +4 -0
- package/node_modules/@corellium/corellium-api/node_modules/uuid/v4.js +29 -0
- package/node_modules/@corellium/corellium-api/node_modules/uuid/v5.js +3 -0
- package/node_modules/@corellium/corellium-api/package.json +106 -0
- package/node_modules/@corellium/corellium-api/resumable.js +1312 -0
- package/node_modules/@corellium/corellium-api/src/agent.js +962 -0
- package/node_modules/@corellium/corellium-api/src/corellium.js +444 -0
- package/node_modules/@corellium/corellium-api/src/images.js +131 -0
- package/node_modules/@corellium/corellium-api/src/input.js +178 -0
- package/node_modules/@corellium/corellium-api/src/instance-updater.js +56 -0
- package/node_modules/@corellium/corellium-api/src/instance.js +1031 -0
- package/node_modules/@corellium/corellium-api/src/netmon.js +308 -0
- package/node_modules/@corellium/corellium-api/src/project.js +393 -0
- package/node_modules/@corellium/corellium-api/src/role.js +65 -0
- package/node_modules/@corellium/corellium-api/src/snapshot.js +77 -0
- package/node_modules/@corellium/corellium-api/src/team.js +29 -0
- package/node_modules/@corellium/corellium-api/src/user.js +51 -0
- package/node_modules/@corellium/corellium-api/src/util/fetch.js +62 -0
- package/node_modules/@corellium/corellium-api/src/util/sleep.js +7 -0
- package/node_modules/@corellium/corellium-api/test/integration-tests.js +1292 -0
- package/node_modules/@corellium/corellium-api/test/root-hook-set-flag-if-test-failed.js +7 -0
- package/node_modules/@jridgewell/resolve-uri/LICENSE +19 -0
- package/node_modules/@jridgewell/resolve-uri/README.md +40 -0
- package/node_modules/@jridgewell/resolve-uri/dist/resolve-uri.mjs +242 -0
- package/node_modules/@jridgewell/resolve-uri/dist/resolve-uri.mjs.map +1 -0
- package/node_modules/@jridgewell/resolve-uri/dist/resolve-uri.umd.js +250 -0
- package/node_modules/@jridgewell/resolve-uri/dist/resolve-uri.umd.js.map +1 -0
- package/node_modules/@jridgewell/resolve-uri/dist/types/resolve-uri.d.ts +4 -0
- package/node_modules/@jridgewell/resolve-uri/package.json +108 -0
- package/node_modules/@jridgewell/sourcemap-codec/LICENSE +21 -0
- package/node_modules/@jridgewell/sourcemap-codec/README.md +200 -0
- package/node_modules/@jridgewell/sourcemap-codec/dist/sourcemap-codec.mjs +164 -0
- package/node_modules/@jridgewell/sourcemap-codec/dist/sourcemap-codec.mjs.map +1 -0
- package/node_modules/@jridgewell/sourcemap-codec/dist/sourcemap-codec.umd.js +175 -0
- package/node_modules/@jridgewell/sourcemap-codec/dist/sourcemap-codec.umd.js.map +1 -0
- package/node_modules/@jridgewell/sourcemap-codec/dist/types/sourcemap-codec.d.ts +6 -0
- package/node_modules/@jridgewell/sourcemap-codec/package.json +110 -0
- package/node_modules/@jridgewell/sourcemap-codec/src/sourcemap-codec.ts +198 -0
- package/node_modules/@jridgewell/trace-mapping/LICENSE +19 -0
- package/node_modules/@jridgewell/trace-mapping/README.md +252 -0
- package/node_modules/@jridgewell/trace-mapping/dist/trace-mapping.mjs +518 -0
- package/node_modules/@jridgewell/trace-mapping/dist/trace-mapping.mjs.map +1 -0
- package/node_modules/@jridgewell/trace-mapping/dist/trace-mapping.umd.js +532 -0
- package/node_modules/@jridgewell/trace-mapping/dist/trace-mapping.umd.js.map +1 -0
- package/node_modules/@jridgewell/trace-mapping/dist/types/any-map.d.ts +8 -0
- package/node_modules/@jridgewell/trace-mapping/dist/types/binary-search.d.ts +32 -0
- package/node_modules/@jridgewell/trace-mapping/dist/types/by-source.d.ts +7 -0
- package/node_modules/@jridgewell/trace-mapping/dist/types/resolve.d.ts +1 -0
- package/node_modules/@jridgewell/trace-mapping/dist/types/sort.d.ts +2 -0
- package/node_modules/@jridgewell/trace-mapping/dist/types/sourcemap-segment.d.ts +16 -0
- package/node_modules/@jridgewell/trace-mapping/dist/types/strip-filename.d.ts +4 -0
- package/node_modules/@jridgewell/trace-mapping/dist/types/trace-mapping.d.ts +74 -0
- package/node_modules/@jridgewell/trace-mapping/dist/types/types.d.ts +85 -0
- package/node_modules/@jridgewell/trace-mapping/package.json +112 -0
- package/node_modules/@jridgewell/trace-mapping/src/any-map.ts +166 -0
- package/node_modules/@jridgewell/trace-mapping/src/binary-search.ts +115 -0
- package/node_modules/@jridgewell/trace-mapping/src/by-source.ts +64 -0
- package/node_modules/@jridgewell/trace-mapping/src/resolve.ts +10 -0
- package/node_modules/@jridgewell/trace-mapping/src/sort.ts +45 -0
- package/node_modules/@jridgewell/trace-mapping/src/sourcemap-segment.ts +23 -0
- package/node_modules/@jridgewell/trace-mapping/src/strip-filename.ts +8 -0
- package/node_modules/@jridgewell/trace-mapping/src/trace-mapping.ts +405 -0
- package/node_modules/@jridgewell/trace-mapping/src/types.ts +90 -0
- package/node_modules/@mapbox/node-pre-gyp/CHANGELOG.md +504 -0
- package/node_modules/@mapbox/node-pre-gyp/LICENSE +27 -0
- package/node_modules/@mapbox/node-pre-gyp/README.md +742 -0
- package/node_modules/@mapbox/node-pre-gyp/bin/node-pre-gyp +4 -0
- package/node_modules/@mapbox/node-pre-gyp/bin/node-pre-gyp.cmd +2 -0
- package/node_modules/@mapbox/node-pre-gyp/contributing.md +10 -0
- package/node_modules/@mapbox/node-pre-gyp/lib/build.js +51 -0
- package/node_modules/@mapbox/node-pre-gyp/lib/clean.js +31 -0
- package/node_modules/@mapbox/node-pre-gyp/lib/configure.js +52 -0
- package/node_modules/@mapbox/node-pre-gyp/lib/info.js +38 -0
- package/node_modules/@mapbox/node-pre-gyp/lib/install.js +235 -0
- package/node_modules/@mapbox/node-pre-gyp/lib/main.js +125 -0
- package/node_modules/@mapbox/node-pre-gyp/lib/node-pre-gyp.js +309 -0
- package/node_modules/@mapbox/node-pre-gyp/lib/package.js +73 -0
- package/node_modules/@mapbox/node-pre-gyp/lib/pre-binding.js +34 -0
- package/node_modules/@mapbox/node-pre-gyp/lib/publish.js +81 -0
- package/node_modules/@mapbox/node-pre-gyp/lib/rebuild.js +20 -0
- package/node_modules/@mapbox/node-pre-gyp/lib/reinstall.js +19 -0
- package/node_modules/@mapbox/node-pre-gyp/lib/reveal.js +32 -0
- package/node_modules/@mapbox/node-pre-gyp/lib/testbinary.js +79 -0
- package/node_modules/@mapbox/node-pre-gyp/lib/testpackage.js +53 -0
- package/node_modules/@mapbox/node-pre-gyp/lib/unpublish.js +41 -0
- package/node_modules/@mapbox/node-pre-gyp/lib/util/abi_crosswalk.json +2602 -0
- package/node_modules/@mapbox/node-pre-gyp/lib/util/compile.js +93 -0
- package/node_modules/@mapbox/node-pre-gyp/lib/util/handle_gyp_opts.js +102 -0
- package/node_modules/@mapbox/node-pre-gyp/lib/util/napi.js +205 -0
- package/node_modules/@mapbox/node-pre-gyp/lib/util/nw-pre-gyp/index.html +26 -0
- package/node_modules/@mapbox/node-pre-gyp/lib/util/nw-pre-gyp/package.json +9 -0
- package/node_modules/@mapbox/node-pre-gyp/lib/util/s3_setup.js +163 -0
- package/node_modules/@mapbox/node-pre-gyp/lib/util/versioning.js +335 -0
- package/node_modules/@mapbox/node-pre-gyp/package.json +100 -0
- package/node_modules/@nicolo-ribaudo/chokidar-2/README.md +3 -0
- package/node_modules/@nicolo-ribaudo/chokidar-2/build-chokidar.sh +30 -0
- package/node_modules/@nicolo-ribaudo/chokidar-2/dist/main.js +2086 -0
- package/node_modules/@nicolo-ribaudo/chokidar-2/package.json +73 -0
- package/node_modules/@nicolo-ribaudo/chokidar-2/types.d.ts +191 -0
- package/node_modules/abbrev/LICENSE +46 -0
- package/node_modules/abbrev/README.md +23 -0
- package/node_modules/abbrev/abbrev.js +61 -0
- package/node_modules/abbrev/package.json +59 -0
- package/node_modules/agent-base/README.md +145 -0
- package/node_modules/agent-base/dist/src/index.d.ts +78 -0
- package/node_modules/agent-base/dist/src/index.js +203 -0
- package/node_modules/agent-base/dist/src/index.js.map +1 -0
- package/node_modules/agent-base/dist/src/promisify.d.ts +4 -0
- package/node_modules/agent-base/dist/src/promisify.js +18 -0
- package/node_modules/agent-base/dist/src/promisify.js.map +1 -0
- package/node_modules/agent-base/package.json +97 -0
- package/node_modules/agent-base/src/index.ts +345 -0
- package/node_modules/agent-base/src/promisify.ts +33 -0
- package/node_modules/ansi-regex/index.d.ts +37 -0
- package/node_modules/ansi-regex/index.js +10 -0
- package/node_modules/ansi-regex/license +9 -0
- package/node_modules/ansi-regex/package.json +90 -0
- package/node_modules/ansi-regex/readme.md +78 -0
- package/node_modules/ansi-styles/index.d.ts +345 -0
- package/node_modules/ansi-styles/index.js +163 -0
- package/node_modules/ansi-styles/license +9 -0
- package/node_modules/ansi-styles/package.json +96 -0
- package/node_modules/ansi-styles/readme.md +152 -0
- package/node_modules/anymatch/LICENSE +15 -0
- package/node_modules/anymatch/README.md +87 -0
- package/node_modules/anymatch/index.d.ts +19 -0
- package/node_modules/anymatch/index.js +104 -0
- package/node_modules/anymatch/package.json +80 -0
- package/node_modules/aproba/CHANGELOG.md +4 -0
- package/node_modules/aproba/LICENSE +14 -0
- package/node_modules/aproba/README.md +94 -0
- package/node_modules/aproba/index.js +105 -0
- package/node_modules/aproba/package.json +66 -0
- package/node_modules/are-we-there-yet/LICENSE.md +18 -0
- package/node_modules/are-we-there-yet/README.md +208 -0
- package/node_modules/are-we-there-yet/lib/index.js +4 -0
- package/node_modules/are-we-there-yet/lib/tracker-base.js +11 -0
- package/node_modules/are-we-there-yet/lib/tracker-group.js +116 -0
- package/node_modules/are-we-there-yet/lib/tracker-stream.js +36 -0
- package/node_modules/are-we-there-yet/lib/tracker.js +32 -0
- package/node_modules/are-we-there-yet/node_modules/readable-stream/CONTRIBUTING.md +38 -0
- package/node_modules/are-we-there-yet/node_modules/readable-stream/GOVERNANCE.md +136 -0
- package/node_modules/are-we-there-yet/node_modules/readable-stream/LICENSE +47 -0
- package/node_modules/are-we-there-yet/node_modules/readable-stream/README.md +106 -0
- package/node_modules/are-we-there-yet/node_modules/readable-stream/errors-browser.js +127 -0
- package/node_modules/are-we-there-yet/node_modules/readable-stream/errors.js +116 -0
- package/node_modules/are-we-there-yet/node_modules/readable-stream/experimentalWarning.js +17 -0
- package/node_modules/are-we-there-yet/node_modules/readable-stream/lib/_stream_duplex.js +139 -0
- package/node_modules/are-we-there-yet/node_modules/readable-stream/lib/_stream_passthrough.js +39 -0
- package/node_modules/are-we-there-yet/node_modules/readable-stream/lib/_stream_readable.js +1124 -0
- package/node_modules/are-we-there-yet/node_modules/readable-stream/lib/_stream_transform.js +201 -0
- package/node_modules/are-we-there-yet/node_modules/readable-stream/lib/_stream_writable.js +697 -0
- package/node_modules/are-we-there-yet/node_modules/readable-stream/lib/internal/streams/async_iterator.js +207 -0
- package/node_modules/are-we-there-yet/node_modules/readable-stream/lib/internal/streams/buffer_list.js +210 -0
- package/node_modules/are-we-there-yet/node_modules/readable-stream/lib/internal/streams/destroy.js +105 -0
- package/node_modules/are-we-there-yet/node_modules/readable-stream/lib/internal/streams/end-of-stream.js +104 -0
- package/node_modules/are-we-there-yet/node_modules/readable-stream/lib/internal/streams/from-browser.js +3 -0
- package/node_modules/are-we-there-yet/node_modules/readable-stream/lib/internal/streams/from.js +64 -0
- package/node_modules/are-we-there-yet/node_modules/readable-stream/lib/internal/streams/pipeline.js +97 -0
- package/node_modules/are-we-there-yet/node_modules/readable-stream/lib/internal/streams/state.js +27 -0
- package/node_modules/are-we-there-yet/node_modules/readable-stream/lib/internal/streams/stream-browser.js +1 -0
- package/node_modules/are-we-there-yet/node_modules/readable-stream/lib/internal/streams/stream.js +1 -0
- package/node_modules/are-we-there-yet/node_modules/readable-stream/package.json +100 -0
- package/node_modules/are-we-there-yet/node_modules/readable-stream/readable-browser.js +9 -0
- package/node_modules/are-we-there-yet/node_modules/readable-stream/readable.js +16 -0
- package/node_modules/are-we-there-yet/package.json +87 -0
- package/node_modules/ascii-art/.travis.yml +19 -0
- package/node_modules/ascii-art/Fonts/Doom.flf +833 -0
- package/node_modules/ascii-art/Fonts/rusted.flf +302 -0
- package/node_modules/ascii-art/LICENSE +20 -0
- package/node_modules/ascii-art/README.md +654 -0
- package/node_modules/ascii-art/art-source.js +42 -0
- package/node_modules/ascii-art/art.js +579 -0
- package/node_modules/ascii-art/artwork.js +53 -0
- package/node_modules/ascii-art/bin/ascii-art +359 -0
- package/node_modules/ascii-art/color_profiles.json +20 -0
- package/node_modules/ascii-art/demo.js +151 -0
- package/node_modules/ascii-art/generate.js +83 -0
- package/node_modules/ascii-art/kaolin.js +140 -0
- package/node_modules/ascii-art/karma.conf.js +81 -0
- package/node_modules/ascii-art/package.json +123 -0
- package/node_modules/ascii-art/test/dev_setup.sh +16 -0
- package/node_modules/ascii-art/test/extras/kaolin-test.js +81 -0
- package/node_modules/ascii-art/test/images/animal_muppet.nfo +43 -0
- package/node_modules/ascii-art/test/images/beyonce-upgrade.nfo +21 -0
- package/node_modules/ascii-art/test/images/cernettes.nfo +31 -0
- package/node_modules/ascii-art/test/images/gir.nfo +40 -0
- package/node_modules/ascii-art/test/images/gob.nfo +40 -0
- package/node_modules/ascii-art/test/images/grendel.nfo +70 -0
- package/node_modules/ascii-art/test/images/initech.nfo +29 -0
- package/node_modules/ascii-art/test/images/metropolis.nfo +56 -0
- package/node_modules/ascii-art/test/images/mixed.nfo +15 -0
- package/node_modules/ascii-art/test/images/mucha-job.art.nfo +56 -0
- package/node_modules/ascii-art/test/images/mucha-job.nfo +56 -0
- package/node_modules/ascii-art/test/images/peewee.nfo +50 -0
- package/node_modules/ascii-art/test/images/peewee.poster.nfo +50 -0
- package/node_modules/ascii-art/test/images/rene-cigler.nfo +59 -0
- package/node_modules/ascii-art/test/images/serious-business.nfo +48 -0
- package/node_modules/ascii-art/test/images/seven-proxies.nfo +26 -0
- package/node_modules/ascii-art/test/images/sunburst.nfo +40 -0
- package/node_modules/ascii-art/test/images/sunburst_red.nfo +40 -0
- package/node_modules/ascii-art/test/images/zero-cool.nfo +60 -0
- package/node_modules/ascii-art/test/karma/init.js +34 -0
- package/node_modules/ascii-art/test/scripts/bbs.js +42 -0
- package/node_modules/ascii-art/test/test.js +459 -0
- package/node_modules/ascii-art-ansi/LICENSE +20 -0
- package/node_modules/ascii-art-ansi/README.md +287 -0
- package/node_modules/ascii-art-ansi/ansi.js +409 -0
- package/node_modules/ascii-art-ansi/color.js +623 -0
- package/node_modules/ascii-art-ansi/grid.js +129 -0
- package/node_modules/ascii-art-ansi/package.json +84 -0
- package/node_modules/ascii-art-ansi/test/test.js +251 -0
- package/node_modules/ascii-art-braille/README.md +6 -0
- package/node_modules/ascii-art-braille/braille.js +176 -0
- package/node_modules/ascii-art-braille/package.json +34 -0
- package/node_modules/ascii-art-font/Fonts/Doom.flf +833 -0
- package/node_modules/ascii-art-font/Fonts/rusted.flf +302 -0
- package/node_modules/ascii-art-font/LICENSE +22 -0
- package/node_modules/ascii-art-font/MIT-LICENSE.txt +20 -0
- package/node_modules/ascii-art-font/README.md +74 -0
- package/node_modules/ascii-art-font/font.js +152 -0
- package/node_modules/ascii-art-font/package.json +71 -0
- package/node_modules/ascii-art-font/test/test.js +59 -0
- package/node_modules/ascii-art-graph/README.md +142 -0
- package/node_modules/ascii-art-graph/d3.js +20 -0
- package/node_modules/ascii-art-graph/graph.js +1042 -0
- package/node_modules/ascii-art-graph/multi-series.png +0 -0
- package/node_modules/ascii-art-graph/package.json +45 -0
- package/node_modules/ascii-art-graph/simple-braille.png +0 -0
- package/node_modules/ascii-art-graph/test/data/binaryGrid.json +1725 -0
- package/node_modules/ascii-art-graph/test/data/multiLineGraph.json +21 -0
- package/node_modules/ascii-art-graph/test/data/simple-braille.ansi +20 -0
- package/node_modules/ascii-art-graph/test/data/simpleLineGraph.json +21 -0
- package/node_modules/ascii-art-graph/test/test.js +119 -0
- package/node_modules/ascii-art-image/README.md +93 -0
- package/node_modules/ascii-art-image/generate.js +80 -0
- package/node_modules/ascii-art-image/image.js +464 -0
- package/node_modules/ascii-art-image/node_modules/ascii-art-braille/README.md +6 -0
- package/node_modules/ascii-art-image/node_modules/ascii-art-braille/braille.js +249 -0
- package/node_modules/ascii-art-image/node_modules/ascii-art-braille/package.json +34 -0
- package/node_modules/ascii-art-image/package.json +47 -0
- package/node_modules/ascii-art-image/renderers/average.js +170 -0
- package/node_modules/ascii-art-image/test/images/animal_muppet.nfo +43 -0
- package/node_modules/ascii-art-image/test/images/beyonce-upgrade.nfo +21 -0
- package/node_modules/ascii-art-image/test/images/cernettes.nfo +31 -0
- package/node_modules/ascii-art-image/test/images/gir.nfo +40 -0
- package/node_modules/ascii-art-image/test/images/gob.nfo +40 -0
- package/node_modules/ascii-art-image/test/images/grendel.nfo +70 -0
- package/node_modules/ascii-art-image/test/images/initech.nfo +29 -0
- package/node_modules/ascii-art-image/test/images/metropolis.nfo +56 -0
- package/node_modules/ascii-art-image/test/images/mixed.nfo +15 -0
- package/node_modules/ascii-art-image/test/images/mucha-job.art.nfo +56 -0
- package/node_modules/ascii-art-image/test/images/mucha-job.json +1 -0
- package/node_modules/ascii-art-image/test/images/mucha-job.nfo +56 -0
- package/node_modules/ascii-art-image/test/images/peewee.nfo +50 -0
- package/node_modules/ascii-art-image/test/images/peewee.poster.nfo +50 -0
- package/node_modules/ascii-art-image/test/images/rene-cigler.nfo +59 -0
- package/node_modules/ascii-art-image/test/images/serious-business.nfo +48 -0
- package/node_modules/ascii-art-image/test/images/seven-proxies.nfo +26 -0
- package/node_modules/ascii-art-image/test/images/zero-cool.nfo +60 -0
- package/node_modules/ascii-art-image/test/test.js +334 -0
- package/node_modules/ascii-art-table/README.md +152 -0
- package/node_modules/ascii-art-table/package.json +42 -0
- package/node_modules/ascii-art-table/table.js +512 -0
- package/node_modules/ascii-art-table/test/test.js +133 -0
- package/node_modules/ascii-art-utf/README.md +23 -0
- package/node_modules/ascii-art-utf/package.json +70 -0
- package/node_modules/ascii-art-utf/run.js +5 -0
- package/node_modules/ascii-art-utf/utf.js +170 -0
- package/node_modules/async/CHANGELOG.md +278 -0
- package/node_modules/async/LICENSE +19 -0
- package/node_modules/async/README.md +56 -0
- package/node_modules/async/all.js +50 -0
- package/node_modules/async/allLimit.js +42 -0
- package/node_modules/async/allSeries.js +37 -0
- package/node_modules/async/any.js +52 -0
- package/node_modules/async/anyLimit.js +43 -0
- package/node_modules/async/anySeries.js +38 -0
- package/node_modules/async/apply.js +68 -0
- package/node_modules/async/applyEach.js +51 -0
- package/node_modules/async/applyEachSeries.js +37 -0
- package/node_modules/async/asyncify.js +110 -0
- package/node_modules/async/auto.js +289 -0
- package/node_modules/async/autoInject.js +170 -0
- package/node_modules/async/bower.json +17 -0
- package/node_modules/async/cargo.js +94 -0
- package/node_modules/async/compose.js +58 -0
- package/node_modules/async/concat.js +43 -0
- package/node_modules/async/concatLimit.js +65 -0
- package/node_modules/async/concatSeries.js +36 -0
- package/node_modules/async/constant.js +66 -0
- package/node_modules/async/detect.js +61 -0
- package/node_modules/async/detectLimit.js +48 -0
- package/node_modules/async/detectSeries.js +38 -0
- package/node_modules/async/dir.js +43 -0
- package/node_modules/async/dist/async.js +5612 -0
- package/node_modules/async/dist/async.min.js +2 -0
- package/node_modules/async/dist/async.min.map +1 -0
- package/node_modules/async/doDuring.js +66 -0
- package/node_modules/async/doUntil.js +39 -0
- package/node_modules/async/doWhilst.js +59 -0
- package/node_modules/async/during.js +76 -0
- package/node_modules/async/each.js +82 -0
- package/node_modules/async/eachLimit.js +45 -0
- package/node_modules/async/eachOf.js +111 -0
- package/node_modules/async/eachOfLimit.js +41 -0
- package/node_modules/async/eachOfSeries.js +35 -0
- package/node_modules/async/eachSeries.js +37 -0
- package/node_modules/async/ensureAsync.js +73 -0
- package/node_modules/async/every.js +50 -0
- package/node_modules/async/everyLimit.js +42 -0
- package/node_modules/async/everySeries.js +37 -0
- package/node_modules/async/filter.js +45 -0
- package/node_modules/async/filterLimit.js +37 -0
- package/node_modules/async/filterSeries.js +35 -0
- package/node_modules/async/find.js +61 -0
- package/node_modules/async/findLimit.js +48 -0
- package/node_modules/async/findSeries.js +38 -0
- package/node_modules/async/foldl.js +78 -0
- package/node_modules/async/foldr.js +44 -0
- package/node_modules/async/forEach.js +82 -0
- package/node_modules/async/forEachLimit.js +45 -0
- package/node_modules/async/forEachOf.js +111 -0
- package/node_modules/async/forEachOfLimit.js +41 -0
- package/node_modules/async/forEachOfSeries.js +35 -0
- package/node_modules/async/forEachSeries.js +37 -0
- package/node_modules/async/forever.js +65 -0
- package/node_modules/async/groupBy.js +54 -0
- package/node_modules/async/groupByLimit.js +71 -0
- package/node_modules/async/groupBySeries.js +37 -0
- package/node_modules/async/index.js +582 -0
- package/node_modules/async/inject.js +78 -0
- package/node_modules/async/internal/DoublyLinkedList.js +88 -0
- package/node_modules/async/internal/applyEach.js +38 -0
- package/node_modules/async/internal/breakLoop.js +9 -0
- package/node_modules/async/internal/consoleFunc.js +42 -0
- package/node_modules/async/internal/createTester.js +44 -0
- package/node_modules/async/internal/doLimit.js +12 -0
- package/node_modules/async/internal/doParallel.js +23 -0
- package/node_modules/async/internal/doParallelLimit.js +23 -0
- package/node_modules/async/internal/eachOfLimit.js +74 -0
- package/node_modules/async/internal/filter.js +75 -0
- package/node_modules/async/internal/findGetResult.js +10 -0
- package/node_modules/async/internal/getIterator.js +13 -0
- package/node_modules/async/internal/initialParams.js +21 -0
- package/node_modules/async/internal/iterator.js +61 -0
- package/node_modules/async/internal/map.js +35 -0
- package/node_modules/async/internal/notId.js +10 -0
- package/node_modules/async/internal/once.js +15 -0
- package/node_modules/async/internal/onlyOnce.js +15 -0
- package/node_modules/async/internal/parallel.js +42 -0
- package/node_modules/async/internal/queue.js +204 -0
- package/node_modules/async/internal/reject.js +21 -0
- package/node_modules/async/internal/setImmediate.js +42 -0
- package/node_modules/async/internal/slice.js +16 -0
- package/node_modules/async/internal/withoutIndex.js +12 -0
- package/node_modules/async/internal/wrapAsync.js +25 -0
- package/node_modules/async/log.js +41 -0
- package/node_modules/async/map.js +54 -0
- package/node_modules/async/mapLimit.js +37 -0
- package/node_modules/async/mapSeries.js +36 -0
- package/node_modules/async/mapValues.js +63 -0
- package/node_modules/async/mapValuesLimit.js +61 -0
- package/node_modules/async/mapValuesSeries.js +37 -0
- package/node_modules/async/memoize.js +101 -0
- package/node_modules/async/nextTick.js +51 -0
- package/node_modules/async/package.json +110 -0
- package/node_modules/async/parallel.js +90 -0
- package/node_modules/async/parallelLimit.js +40 -0
- package/node_modules/async/priorityQueue.js +98 -0
- package/node_modules/async/queue.js +130 -0
- package/node_modules/async/race.js +70 -0
- package/node_modules/async/reduce.js +78 -0
- package/node_modules/async/reduceRight.js +44 -0
- package/node_modules/async/reflect.js +81 -0
- package/node_modules/async/reflectAll.js +105 -0
- package/node_modules/async/reject.js +45 -0
- package/node_modules/async/rejectLimit.js +37 -0
- package/node_modules/async/rejectSeries.js +35 -0
- package/node_modules/async/retry.js +156 -0
- package/node_modules/async/retryable.js +65 -0
- package/node_modules/async/select.js +45 -0
- package/node_modules/async/selectLimit.js +37 -0
- package/node_modules/async/selectSeries.js +35 -0
- package/node_modules/async/seq.js +91 -0
- package/node_modules/async/series.js +85 -0
- package/node_modules/async/setImmediate.js +45 -0
- package/node_modules/async/some.js +52 -0
- package/node_modules/async/someLimit.js +43 -0
- package/node_modules/async/someSeries.js +38 -0
- package/node_modules/async/sortBy.js +91 -0
- package/node_modules/async/timeout.js +89 -0
- package/node_modules/async/times.js +50 -0
- package/node_modules/async/timesLimit.js +42 -0
- package/node_modules/async/timesSeries.js +32 -0
- package/node_modules/async/transform.js +87 -0
- package/node_modules/async/tryEach.js +81 -0
- package/node_modules/async/unmemoize.js +25 -0
- package/node_modules/async/until.js +41 -0
- package/node_modules/async/waterfall.js +113 -0
- package/node_modules/async/whilst.js +72 -0
- package/node_modules/async/wrapSync.js +110 -0
- package/node_modules/async-arrays/.travis.yml +6 -0
- package/node_modules/async-arrays/LICENSE +20 -0
- package/node_modules/async-arrays/README.md +133 -0
- package/node_modules/async-arrays/async-arrays.js +214 -0
- package/node_modules/async-arrays/package.json +64 -0
- package/node_modules/async-arrays/test.js +101 -0
- package/node_modules/async-limiter/.eslintignore +2 -0
- package/node_modules/async-limiter/.nycrc +10 -0
- package/node_modules/async-limiter/.travis.yml +9 -0
- package/node_modules/async-limiter/LICENSE +8 -0
- package/node_modules/async-limiter/index.js +67 -0
- package/node_modules/async-limiter/package.json +72 -0
- package/node_modules/async-limiter/readme.md +132 -0
- package/node_modules/asynckit/LICENSE +21 -0
- package/node_modules/asynckit/README.md +233 -0
- package/node_modules/asynckit/bench.js +76 -0
- package/node_modules/asynckit/index.js +6 -0
- package/node_modules/asynckit/lib/abort.js +29 -0
- package/node_modules/asynckit/lib/async.js +34 -0
- package/node_modules/asynckit/lib/defer.js +26 -0
- package/node_modules/asynckit/lib/iterate.js +75 -0
- package/node_modules/asynckit/lib/readable_asynckit.js +91 -0
- package/node_modules/asynckit/lib/readable_parallel.js +25 -0
- package/node_modules/asynckit/lib/readable_serial.js +25 -0
- package/node_modules/asynckit/lib/readable_serial_ordered.js +29 -0
- package/node_modules/asynckit/lib/state.js +37 -0
- package/node_modules/asynckit/lib/streamify.js +141 -0
- package/node_modules/asynckit/lib/terminator.js +29 -0
- package/node_modules/asynckit/package.json +96 -0
- package/node_modules/asynckit/parallel.js +43 -0
- package/node_modules/asynckit/serial.js +17 -0
- package/node_modules/asynckit/serialOrdered.js +75 -0
- package/node_modules/asynckit/stream.js +21 -0
- package/node_modules/axios/CHANGELOG.md +943 -0
- package/node_modules/axios/LICENSE +19 -0
- package/node_modules/axios/README.md +991 -0
- package/node_modules/axios/SECURITY.md +5 -0
- package/node_modules/axios/UPGRADE_GUIDE.md +168 -0
- package/node_modules/axios/dist/axios.js +2595 -0
- package/node_modules/axios/dist/axios.map +1 -0
- package/node_modules/axios/dist/axios.min.js +3 -0
- package/node_modules/axios/dist/axios.min.map +1 -0
- package/node_modules/axios/index.d.ts +254 -0
- package/node_modules/axios/index.js +1 -0
- package/node_modules/axios/lib/adapters/README.md +37 -0
- package/node_modules/axios/lib/adapters/http.js +424 -0
- package/node_modules/axios/lib/adapters/xhr.js +222 -0
- package/node_modules/axios/lib/axios.js +64 -0
- package/node_modules/axios/lib/cancel/CancelToken.js +119 -0
- package/node_modules/axios/lib/cancel/CanceledError.js +22 -0
- package/node_modules/axios/lib/cancel/isCancel.js +5 -0
- package/node_modules/axios/lib/core/Axios.js +160 -0
- package/node_modules/axios/lib/core/AxiosError.js +86 -0
- package/node_modules/axios/lib/core/InterceptorManager.js +54 -0
- package/node_modules/axios/lib/core/README.md +8 -0
- package/node_modules/axios/lib/core/buildFullPath.js +20 -0
- package/node_modules/axios/lib/core/dispatchRequest.js +87 -0
- package/node_modules/axios/lib/core/mergeConfig.js +100 -0
- package/node_modules/axios/lib/core/settle.js +25 -0
- package/node_modules/axios/lib/core/transformData.js +22 -0
- package/node_modules/axios/lib/defaults/env/FormData.js +2 -0
- package/node_modules/axios/lib/defaults/index.js +146 -0
- package/node_modules/axios/lib/defaults/transitional.js +7 -0
- package/node_modules/axios/lib/env/README.md +3 -0
- package/node_modules/axios/lib/env/data.js +3 -0
- package/node_modules/axios/lib/helpers/README.md +7 -0
- package/node_modules/axios/lib/helpers/bind.js +11 -0
- package/node_modules/axios/lib/helpers/buildURL.js +70 -0
- package/node_modules/axios/lib/helpers/combineURLs.js +14 -0
- package/node_modules/axios/lib/helpers/cookies.js +53 -0
- package/node_modules/axios/lib/helpers/deprecatedMethod.js +24 -0
- package/node_modules/axios/lib/helpers/isAbsoluteURL.js +14 -0
- package/node_modules/axios/lib/helpers/isAxiosError.js +13 -0
- package/node_modules/axios/lib/helpers/isURLSameOrigin.js +68 -0
- package/node_modules/axios/lib/helpers/normalizeHeaderName.js +12 -0
- package/node_modules/axios/lib/helpers/null.js +2 -0
- package/node_modules/axios/lib/helpers/parseHeaders.js +53 -0
- package/node_modules/axios/lib/helpers/parseProtocol.js +6 -0
- package/node_modules/axios/lib/helpers/spread.js +27 -0
- package/node_modules/axios/lib/helpers/toFormData.js +72 -0
- package/node_modules/axios/lib/helpers/validator.js +86 -0
- package/node_modules/axios/lib/utils.js +470 -0
- package/node_modules/axios/package.json +117 -0
- package/node_modules/axios/tsconfig.json +14 -0
- package/node_modules/axios/tslint.json +6 -0
- package/node_modules/balanced-match/.github/FUNDING.yml +2 -0
- package/node_modules/balanced-match/LICENSE.md +21 -0
- package/node_modules/balanced-match/README.md +97 -0
- package/node_modules/balanced-match/index.js +62 -0
- package/node_modules/balanced-match/package.json +79 -0
- package/node_modules/binary-extensions/binary-extensions.json +260 -0
- package/node_modules/binary-extensions/binary-extensions.json.d.ts +3 -0
- package/node_modules/binary-extensions/index.d.ts +14 -0
- package/node_modules/binary-extensions/index.js +1 -0
- package/node_modules/binary-extensions/license +9 -0
- package/node_modules/binary-extensions/package.json +74 -0
- package/node_modules/binary-extensions/readme.md +41 -0
- package/node_modules/brace-expansion/LICENSE +21 -0
- package/node_modules/brace-expansion/README.md +129 -0
- package/node_modules/brace-expansion/index.js +201 -0
- package/node_modules/brace-expansion/package.json +78 -0
- package/node_modules/braces/CHANGELOG.md +184 -0
- package/node_modules/braces/LICENSE +21 -0
- package/node_modules/braces/README.md +593 -0
- package/node_modules/braces/index.js +170 -0
- package/node_modules/braces/lib/compile.js +57 -0
- package/node_modules/braces/lib/constants.js +57 -0
- package/node_modules/braces/lib/expand.js +113 -0
- package/node_modules/braces/lib/parse.js +333 -0
- package/node_modules/braces/lib/stringify.js +32 -0
- package/node_modules/braces/lib/utils.js +112 -0
- package/node_modules/braces/package.json +127 -0
- package/node_modules/buffer-crc32/LICENSE +19 -0
- package/node_modules/buffer-crc32/README.md +47 -0
- package/node_modules/buffer-crc32/index.js +111 -0
- package/node_modules/buffer-crc32/package.json +72 -0
- package/node_modules/call-bind/.eslintignore +1 -0
- package/node_modules/call-bind/.eslintrc +17 -0
- package/node_modules/call-bind/.github/FUNDING.yml +12 -0
- package/node_modules/call-bind/.nycrc +13 -0
- package/node_modules/call-bind/CHANGELOG.md +42 -0
- package/node_modules/call-bind/LICENSE +21 -0
- package/node_modules/call-bind/README.md +2 -0
- package/node_modules/call-bind/callBound.js +15 -0
- package/node_modules/call-bind/index.js +47 -0
- package/node_modules/call-bind/package.json +126 -0
- package/node_modules/call-bind/test/callBound.js +55 -0
- package/node_modules/call-bind/test/index.js +66 -0
- package/node_modules/canvas/Readme.md +600 -0
- package/node_modules/canvas/binding.gyp +229 -0
- package/node_modules/canvas/browser.js +35 -0
- package/node_modules/canvas/build/Release/.deps/Release/canvas.node.d +1 -0
- package/node_modules/canvas/build/Release/.deps/Release/obj.target/canvas/src/Backends.o.d +392 -0
- package/node_modules/canvas/build/Release/.deps/Release/obj.target/canvas/src/Canvas.o.d +406 -0
- package/node_modules/canvas/build/Release/.deps/Release/obj.target/canvas/src/CanvasGradient.o.d +376 -0
- package/node_modules/canvas/build/Release/.deps/Release/obj.target/canvas/src/CanvasPattern.o.d +722 -0
- package/node_modules/canvas/build/Release/.deps/Release/obj.target/canvas/src/CanvasRenderingContext2d.o.d +733 -0
- package/node_modules/canvas/build/Release/.deps/Release/obj.target/canvas/src/Image.o.d +722 -0
- package/node_modules/canvas/build/Release/.deps/Release/obj.target/canvas/src/ImageData.o.d +64 -0
- package/node_modules/canvas/build/Release/.deps/Release/obj.target/canvas/src/backend/Backend.o.d +72 -0
- package/node_modules/canvas/build/Release/.deps/Release/obj.target/canvas/src/backend/ImageBackend.o.d +74 -0
- package/node_modules/canvas/build/Release/.deps/Release/obj.target/canvas/src/backend/PdfBackend.o.d +391 -0
- package/node_modules/canvas/build/Release/.deps/Release/obj.target/canvas/src/backend/SvgBackend.o.d +391 -0
- package/node_modules/canvas/build/Release/.deps/Release/obj.target/canvas/src/bmp/BMPParser.o.d +5 -0
- package/node_modules/canvas/build/Release/.deps/Release/obj.target/canvas/src/closure.o.d +386 -0
- package/node_modules/canvas/build/Release/.deps/Release/obj.target/canvas/src/color.o.d +4 -0
- package/node_modules/canvas/build/Release/.deps/Release/obj.target/canvas/src/init.o.d +758 -0
- package/node_modules/canvas/build/Release/.deps/Release/obj.target/canvas/src/register_font.o.d +349 -0
- package/node_modules/canvas/build/Release/canvas.node +0 -0
- package/node_modules/canvas/build/Release/libX11.6.dylib +0 -0
- package/node_modules/canvas/build/Release/libXau.6.dylib +0 -0
- package/node_modules/canvas/build/Release/libXdmcp.6.dylib +0 -0
- package/node_modules/canvas/build/Release/libXext.6.dylib +0 -0
- package/node_modules/canvas/build/Release/libXrender.1.dylib +0 -0
- package/node_modules/canvas/build/Release/libcairo-gobject.2.dylib +0 -0
- package/node_modules/canvas/build/Release/libcairo.2.dylib +0 -0
- package/node_modules/canvas/build/Release/libffi.8.dylib +0 -0
- package/node_modules/canvas/build/Release/libfontconfig.1.dylib +0 -0
- package/node_modules/canvas/build/Release/libfreetype.6.dylib +0 -0
- package/node_modules/canvas/build/Release/libfribidi.0.dylib +0 -0
- package/node_modules/canvas/build/Release/libgdk_pixbuf-2.0.0.dylib +0 -0
- package/node_modules/canvas/build/Release/libgif.7.2.0.dylib +0 -0
- package/node_modules/canvas/build/Release/libgio-2.0.0.dylib +0 -0
- package/node_modules/canvas/build/Release/libglib-2.0.0.dylib +0 -0
- package/node_modules/canvas/build/Release/libgmodule-2.0.0.dylib +0 -0
- package/node_modules/canvas/build/Release/libgobject-2.0.0.dylib +0 -0
- package/node_modules/canvas/build/Release/libgraphite2.3.2.1.dylib +0 -0
- package/node_modules/canvas/build/Release/libharfbuzz.0.dylib +0 -0
- package/node_modules/canvas/build/Release/libintl.8.dylib +0 -0
- package/node_modules/canvas/build/Release/libjpeg.9.dylib +0 -0
- package/node_modules/canvas/build/Release/libpango-1.0.0.dylib +0 -0
- package/node_modules/canvas/build/Release/libpangocairo-1.0.0.dylib +0 -0
- package/node_modules/canvas/build/Release/libpangoft2-1.0.0.dylib +0 -0
- package/node_modules/canvas/build/Release/libpcre.1.dylib +0 -0
- package/node_modules/canvas/build/Release/libpixman-1.0.40.0.dylib +0 -0
- package/node_modules/canvas/build/Release/libpng16.16.dylib +0 -0
- package/node_modules/canvas/build/Release/librsvg-2.2.dylib +0 -0
- package/node_modules/canvas/build/Release/libxcb-render.0.0.0.dylib +0 -0
- package/node_modules/canvas/build/Release/libxcb-shm.0.0.0.dylib +0 -0
- package/node_modules/canvas/build/Release/libxcb.1.1.0.dylib +0 -0
- package/node_modules/canvas/build/Release/obj.target/canvas/src/Backends.o +0 -0
- package/node_modules/canvas/build/Release/obj.target/canvas/src/Canvas.o +0 -0
- package/node_modules/canvas/build/Release/obj.target/canvas/src/CanvasGradient.o +0 -0
- package/node_modules/canvas/build/Release/obj.target/canvas/src/CanvasPattern.o +0 -0
- package/node_modules/canvas/build/Release/obj.target/canvas/src/CanvasRenderingContext2d.o +0 -0
- package/node_modules/canvas/build/Release/obj.target/canvas/src/Image.o +0 -0
- package/node_modules/canvas/build/Release/obj.target/canvas/src/ImageData.o +0 -0
- package/node_modules/canvas/build/Release/obj.target/canvas/src/backend/Backend.o +0 -0
- package/node_modules/canvas/build/Release/obj.target/canvas/src/backend/ImageBackend.o +0 -0
- package/node_modules/canvas/build/Release/obj.target/canvas/src/backend/PdfBackend.o +0 -0
- package/node_modules/canvas/build/Release/obj.target/canvas/src/backend/SvgBackend.o +0 -0
- package/node_modules/canvas/build/Release/obj.target/canvas/src/bmp/BMPParser.o +0 -0
- package/node_modules/canvas/build/Release/obj.target/canvas/src/closure.o +0 -0
- package/node_modules/canvas/build/Release/obj.target/canvas/src/color.o +0 -0
- package/node_modules/canvas/build/Release/obj.target/canvas/src/init.o +0 -0
- package/node_modules/canvas/build/Release/obj.target/canvas/src/register_font.o +0 -0
- package/node_modules/canvas/index.js +92 -0
- package/node_modules/canvas/lib/DOMMatrix.js +620 -0
- package/node_modules/canvas/lib/bindings.js +13 -0
- package/node_modules/canvas/lib/canvas.js +113 -0
- package/node_modules/canvas/lib/context2d.js +14 -0
- package/node_modules/canvas/lib/image.js +93 -0
- package/node_modules/canvas/lib/jpegstream.js +41 -0
- package/node_modules/canvas/lib/parse-font.js +101 -0
- package/node_modules/canvas/lib/pattern.js +17 -0
- package/node_modules/canvas/lib/pdfstream.js +35 -0
- package/node_modules/canvas/lib/pngstream.js +42 -0
- package/node_modules/canvas/package.json +116 -0
- package/node_modules/canvas/src/Backends.cc +18 -0
- package/node_modules/canvas/src/Backends.h +10 -0
- package/node_modules/canvas/src/Canvas.cc +951 -0
- package/node_modules/canvas/src/Canvas.h +82 -0
- package/node_modules/canvas/src/CanvasError.h +23 -0
- package/node_modules/canvas/src/CanvasGradient.cc +123 -0
- package/node_modules/canvas/src/CanvasGradient.h +22 -0
- package/node_modules/canvas/src/CanvasPattern.cc +136 -0
- package/node_modules/canvas/src/CanvasPattern.h +37 -0
- package/node_modules/canvas/src/CanvasRenderingContext2d.cc +3097 -0
- package/node_modules/canvas/src/CanvasRenderingContext2d.h +203 -0
- package/node_modules/canvas/src/Image.cc +1402 -0
- package/node_modules/canvas/src/Image.h +127 -0
- package/node_modules/canvas/src/ImageData.cc +140 -0
- package/node_modules/canvas/src/ImageData.h +27 -0
- package/node_modules/canvas/src/JPEGStream.h +167 -0
- package/node_modules/canvas/src/PNG.h +292 -0
- package/node_modules/canvas/src/Point.h +10 -0
- package/node_modules/canvas/src/Util.h +34 -0
- package/node_modules/canvas/src/backend/Backend.cc +112 -0
- package/node_modules/canvas/src/backend/Backend.h +69 -0
- package/node_modules/canvas/src/backend/ImageBackend.cc +74 -0
- package/node_modules/canvas/src/backend/ImageBackend.h +26 -0
- package/node_modules/canvas/src/backend/PdfBackend.cc +53 -0
- package/node_modules/canvas/src/backend/PdfBackend.h +24 -0
- package/node_modules/canvas/src/backend/SvgBackend.cc +61 -0
- package/node_modules/canvas/src/backend/SvgBackend.h +24 -0
- package/node_modules/canvas/src/bmp/BMPParser.cc +457 -0
- package/node_modules/canvas/src/bmp/BMPParser.h +60 -0
- package/node_modules/canvas/src/bmp/LICENSE.md +24 -0
- package/node_modules/canvas/src/closure.cc +26 -0
- package/node_modules/canvas/src/closure.h +81 -0
- package/node_modules/canvas/src/color.cc +775 -0
- package/node_modules/canvas/src/color.h +30 -0
- package/node_modules/canvas/src/dll_visibility.h +20 -0
- package/node_modules/canvas/src/init.cc +92 -0
- package/node_modules/canvas/src/register_font.cc +408 -0
- package/node_modules/canvas/src/register_font.h +7 -0
- package/node_modules/canvas/types/index.d.ts +335 -0
- package/node_modules/canvas/util/has_lib.js +119 -0
- package/node_modules/canvas/util/win_jpeg_lookup.js +21 -0
- package/node_modules/chokidar/LICENSE +21 -0
- package/node_modules/chokidar/README.md +308 -0
- package/node_modules/chokidar/index.js +973 -0
- package/node_modules/chokidar/lib/constants.js +65 -0
- package/node_modules/chokidar/lib/fsevents-handler.js +524 -0
- package/node_modules/chokidar/lib/nodefs-handler.js +654 -0
- package/node_modules/chokidar/package.json +123 -0
- package/node_modules/chokidar/types/index.d.ts +188 -0
- package/node_modules/chownr/LICENSE +15 -0
- package/node_modules/chownr/README.md +3 -0
- package/node_modules/chownr/chownr.js +167 -0
- package/node_modules/chownr/package.json +68 -0
- package/node_modules/cli/README.md +196 -0
- package/node_modules/cli/cli.js +1133 -0
- package/node_modules/cli/examples/cat.js +17 -0
- package/node_modules/cli/examples/command.js +16 -0
- package/node_modules/cli/examples/echo.js +54 -0
- package/node_modules/cli/examples/glob.js +6 -0
- package/node_modules/cli/examples/long_desc.js +20 -0
- package/node_modules/cli/examples/progress.js +11 -0
- package/node_modules/cli/examples/sort.js +18 -0
- package/node_modules/cli/examples/spinner.js +9 -0
- package/node_modules/cli/examples/static.coffee +27 -0
- package/node_modules/cli/examples/static.js +25 -0
- package/node_modules/cli/index.js +1 -0
- package/node_modules/cli/package.json +77 -0
- package/node_modules/cliui/CHANGELOG.md +121 -0
- package/node_modules/cliui/LICENSE.txt +14 -0
- package/node_modules/cliui/README.md +141 -0
- package/node_modules/cliui/build/index.cjs +302 -0
- package/node_modules/cliui/build/lib/index.js +287 -0
- package/node_modules/cliui/build/lib/string-utils.js +27 -0
- package/node_modules/cliui/index.mjs +13 -0
- package/node_modules/cliui/package.json +121 -0
- package/node_modules/color/LICENSE +21 -0
- package/node_modules/color/README.md +123 -0
- package/node_modules/color/index.js +482 -0
- package/node_modules/color/node_modules/color-convert/CHANGELOG.md +54 -0
- package/node_modules/color/node_modules/color-convert/LICENSE +21 -0
- package/node_modules/color/node_modules/color-convert/README.md +68 -0
- package/node_modules/color/node_modules/color-convert/conversions.js +868 -0
- package/node_modules/color/node_modules/color-convert/index.js +78 -0
- package/node_modules/color/node_modules/color-convert/package.json +84 -0
- package/node_modules/color/node_modules/color-convert/route.js +97 -0
- package/node_modules/color/node_modules/color-name/.eslintrc.json +43 -0
- package/node_modules/color/node_modules/color-name/.npmignore +107 -0
- package/node_modules/color/node_modules/color-name/LICENSE +8 -0
- package/node_modules/color/node_modules/color-name/README.md +11 -0
- package/node_modules/color/node_modules/color-name/index.js +152 -0
- package/node_modules/color/node_modules/color-name/package.json +56 -0
- package/node_modules/color/node_modules/color-name/test.js +7 -0
- package/node_modules/color/package.json +75 -0
- package/node_modules/color-convert/CHANGELOG.md +54 -0
- package/node_modules/color-convert/LICENSE +21 -0
- package/node_modules/color-convert/README.md +68 -0
- package/node_modules/color-convert/conversions.js +839 -0
- package/node_modules/color-convert/index.js +81 -0
- package/node_modules/color-convert/package.json +86 -0
- package/node_modules/color-convert/route.js +97 -0
- package/node_modules/color-difference/LICENSE +7 -0
- package/node_modules/color-difference/Makefile +29 -0
- package/node_modules/color-difference/README.md +12 -0
- package/node_modules/color-difference/bin/color-difference +3 -0
- package/node_modules/color-difference/index.js +4 -0
- package/node_modules/color-difference/lib/cli-runner.js +49 -0
- package/node_modules/color-difference/lib/compare.js +28 -0
- package/node_modules/color-difference/lib/index.js +7 -0
- package/node_modules/color-difference/lib/method/abstract.js +15 -0
- package/node_modules/color-difference/lib/method/cie-76-difference.js +33 -0
- package/node_modules/color-difference/lib/method/euclidean-distance.js +32 -0
- package/node_modules/color-difference/package.json +67 -0
- package/node_modules/color-difference/test/compare.js +40 -0
- package/node_modules/color-difference/test/method-absract.js +18 -0
- package/node_modules/color-model/Makefile +29 -0
- package/node_modules/color-model/index.js +5 -0
- package/node_modules/color-model/lib/abstract-model.js +92 -0
- package/node_modules/color-model/lib/component.js +59 -0
- package/node_modules/color-model/lib/hex-rgb.js +69 -0
- package/node_modules/color-model/lib/hsl.js +108 -0
- package/node_modules/color-model/lib/index.js +9 -0
- package/node_modules/color-model/lib/lab.js +46 -0
- package/node_modules/color-model/lib/rgb.js +154 -0
- package/node_modules/color-model/lib/xyz.js +117 -0
- package/node_modules/color-model/package.json +63 -0
- package/node_modules/color-model/test/abstract-model.js +82 -0
- package/node_modules/color-model/test/component.js +104 -0
- package/node_modules/color-model/test/hex-rgb.js +56 -0
- package/node_modules/color-model/test/hsl.js +33 -0
- package/node_modules/color-model/test/lab.js +37 -0
- package/node_modules/color-model/test/rgb.js +74 -0
- package/node_modules/color-model/test/xyz.js +45 -0
- package/node_modules/color-name/LICENSE +8 -0
- package/node_modules/color-name/README.md +11 -0
- package/node_modules/color-name/index.js +152 -0
- package/node_modules/color-name/package.json +60 -0
- package/node_modules/color-string/LICENSE +21 -0
- package/node_modules/color-string/README.md +62 -0
- package/node_modules/color-string/index.js +242 -0
- package/node_modules/color-string/package.json +84 -0
- package/node_modules/color-support/LICENSE +15 -0
- package/node_modules/color-support/README.md +129 -0
- package/node_modules/color-support/bin.js +3 -0
- package/node_modules/color-support/browser.js +14 -0
- package/node_modules/color-support/index.js +134 -0
- package/node_modules/color-support/package.json +74 -0
- package/node_modules/combined-stream/License +19 -0
- package/node_modules/combined-stream/Readme.md +138 -0
- package/node_modules/combined-stream/lib/combined_stream.js +208 -0
- package/node_modules/combined-stream/package.json +62 -0
- package/node_modules/combined-stream/yarn.lock +17 -0
- package/node_modules/component-emitter/History.md +75 -0
- package/node_modules/component-emitter/LICENSE +24 -0
- package/node_modules/component-emitter/Readme.md +74 -0
- package/node_modules/component-emitter/index.js +175 -0
- package/node_modules/component-emitter/package.json +59 -0
- package/node_modules/concat-map/.travis.yml +4 -0
- package/node_modules/concat-map/LICENSE +18 -0
- package/node_modules/concat-map/README.markdown +62 -0
- package/node_modules/concat-map/example/map.js +6 -0
- package/node_modules/concat-map/index.js +13 -0
- package/node_modules/concat-map/package.json +91 -0
- package/node_modules/concat-map/test/map.js +39 -0
- package/node_modules/console-control-strings/LICENSE +13 -0
- package/node_modules/console-control-strings/README.md +145 -0
- package/node_modules/console-control-strings/README.md~ +140 -0
- package/node_modules/console-control-strings/index.js +125 -0
- package/node_modules/console-control-strings/package.json +64 -0
- package/node_modules/convert-source-map/LICENSE +23 -0
- package/node_modules/convert-source-map/README.md +120 -0
- package/node_modules/convert-source-map/index.js +136 -0
- package/node_modules/convert-source-map/package.json +75 -0
- package/node_modules/cookiejar/LICENSE +9 -0
- package/node_modules/cookiejar/cookiejar.js +276 -0
- package/node_modules/cookiejar/package.json +58 -0
- package/node_modules/cookiejar/readme.md +60 -0
- package/node_modules/core-util-is/LICENSE +19 -0
- package/node_modules/core-util-is/README.md +3 -0
- package/node_modules/core-util-is/lib/util.js +107 -0
- package/node_modules/core-util-is/package.json +72 -0
- package/node_modules/cross-fetch/LICENSE +21 -0
- package/node_modules/cross-fetch/README.md +169 -0
- package/node_modules/cross-fetch/dist/browser-polyfill.js +532 -0
- package/node_modules/cross-fetch/dist/browser-ponyfill.js +554 -0
- package/node_modules/cross-fetch/dist/cross-fetch.js +2 -0
- package/node_modules/cross-fetch/dist/cross-fetch.js.map +1 -0
- package/node_modules/cross-fetch/dist/node-polyfill.js +11 -0
- package/node_modules/cross-fetch/dist/node-ponyfill.js +22 -0
- package/node_modules/cross-fetch/dist/react-native-polyfill.js +12 -0
- package/node_modules/cross-fetch/dist/react-native-ponyfill.js +6 -0
- package/node_modules/cross-fetch/index.d.ts +14 -0
- package/node_modules/cross-fetch/package.json +160 -0
- package/node_modules/cross-fetch/polyfill/package.json +8 -0
- package/node_modules/d3/CHANGES.md +1409 -0
- package/node_modules/d3/LICENSE +27 -0
- package/node_modules/d3/README.md +57 -0
- package/node_modules/d3/dist/d3.js +18568 -0
- package/node_modules/d3/dist/d3.min.js +2 -0
- package/node_modules/d3/dist/d3.node.js +287 -0
- package/node_modules/d3/dist/package.js +16 -0
- package/node_modules/d3/index.js +32 -0
- package/node_modules/d3/package.json +109 -0
- package/node_modules/d3-array/.eslintrc.json +15 -0
- package/node_modules/d3-array/LICENSE +27 -0
- package/node_modules/d3-array/README.md +382 -0
- package/node_modules/d3-array/dist/d3-array.js +590 -0
- package/node_modules/d3-array/dist/d3-array.min.js +2 -0
- package/node_modules/d3-array/package.json +77 -0
- package/node_modules/d3-array/rollup.config.js +36 -0
- package/node_modules/d3-array/src/array.js +4 -0
- package/node_modules/d3-array/src/ascending.js +3 -0
- package/node_modules/d3-array/src/bisect.js +7 -0
- package/node_modules/d3-array/src/bisector.js +33 -0
- package/node_modules/d3-array/src/constant.js +5 -0
- package/node_modules/d3-array/src/cross.js +21 -0
- package/node_modules/d3-array/src/descending.js +3 -0
- package/node_modules/d3-array/src/deviation.js +6 -0
- package/node_modules/d3-array/src/extent.js +37 -0
- package/node_modules/d3-array/src/histogram.js +75 -0
- package/node_modules/d3-array/src/identity.js +3 -0
- package/node_modules/d3-array/src/index.js +27 -0
- package/node_modules/d3-array/src/max.js +34 -0
- package/node_modules/d3-array/src/mean.js +25 -0
- package/node_modules/d3-array/src/median.js +28 -0
- package/node_modules/d3-array/src/merge.js +21 -0
- package/node_modules/d3-array/src/min.js +34 -0
- package/node_modules/d3-array/src/number.js +3 -0
- package/node_modules/d3-array/src/pairs.js +10 -0
- package/node_modules/d3-array/src/permute.js +5 -0
- package/node_modules/d3-array/src/quantile.js +14 -0
- package/node_modules/d3-array/src/range.js +13 -0
- package/node_modules/d3-array/src/scan.js +20 -0
- package/node_modules/d3-array/src/shuffle.js +14 -0
- package/node_modules/d3-array/src/sum.js +20 -0
- package/node_modules/d3-array/src/threshold/freedmanDiaconis.js +9 -0
- package/node_modules/d3-array/src/threshold/scott.js +5 -0
- package/node_modules/d3-array/src/threshold/sturges.js +3 -0
- package/node_modules/d3-array/src/ticks.js +51 -0
- package/node_modules/d3-array/src/transpose.js +15 -0
- package/node_modules/d3-array/src/variance.js +33 -0
- package/node_modules/d3-array/src/zip.js +5 -0
- package/node_modules/d3-array/yarn.lock +939 -0
- package/node_modules/d3-axis/.eslintrc.json +15 -0
- package/node_modules/d3-axis/LICENSE +27 -0
- package/node_modules/d3-axis/README.md +192 -0
- package/node_modules/d3-axis/dist/d3-axis.js +193 -0
- package/node_modules/d3-axis/dist/d3-axis.min.js +2 -0
- package/node_modules/d3-axis/package.json +72 -0
- package/node_modules/d3-axis/rollup.config.js +36 -0
- package/node_modules/d3-axis/src/array.js +1 -0
- package/node_modules/d3-axis/src/axis.js +174 -0
- package/node_modules/d3-axis/src/identity.js +3 -0
- package/node_modules/d3-axis/src/index.js +6 -0
- package/node_modules/d3-axis/yarn.lock +1432 -0
- package/node_modules/d3-brush/LICENSE +27 -0
- package/node_modules/d3-brush/README.md +169 -0
- package/node_modules/d3-brush/dist/d3-brush.js +619 -0
- package/node_modules/d3-brush/dist/d3-brush.min.js +2 -0
- package/node_modules/d3-brush/package.json +79 -0
- package/node_modules/d3-brush/src/brush.js +591 -0
- package/node_modules/d3-brush/src/constant.js +5 -0
- package/node_modules/d3-brush/src/event.js +5 -0
- package/node_modules/d3-brush/src/index.js +6 -0
- package/node_modules/d3-brush/src/noevent.js +10 -0
- package/node_modules/d3-chord/.eslintrc.json +15 -0
- package/node_modules/d3-chord/LICENSE +27 -0
- package/node_modules/d3-chord/README.md +170 -0
- package/node_modules/d3-chord/dist/d3-chord.js +230 -0
- package/node_modules/d3-chord/dist/d3-chord.min.js +2 -0
- package/node_modules/d3-chord/package.json +74 -0
- package/node_modules/d3-chord/rollup.config.js +36 -0
- package/node_modules/d3-chord/src/array.js +1 -0
- package/node_modules/d3-chord/src/chord.js +121 -0
- package/node_modules/d3-chord/src/constant.js +5 -0
- package/node_modules/d3-chord/src/index.js +2 -0
- package/node_modules/d3-chord/src/math.js +6 -0
- package/node_modules/d3-chord/src/ribbon.js +87 -0
- package/node_modules/d3-chord/yarn.lock +943 -0
- package/node_modules/d3-collection/.eslintrc.json +15 -0
- package/node_modules/d3-collection/LICENSE +27 -0
- package/node_modules/d3-collection/README.md +271 -0
- package/node_modules/d3-collection/dist/d3-collection.js +217 -0
- package/node_modules/d3-collection/dist/d3-collection.min.js +2 -0
- package/node_modules/d3-collection/package.json +75 -0
- package/node_modules/d3-collection/rollup.config.js +36 -0
- package/node_modules/d3-collection/src/entries.js +5 -0
- package/node_modules/d3-collection/src/index.js +6 -0
- package/node_modules/d3-collection/src/keys.js +5 -0
- package/node_modules/d3-collection/src/map.js +75 -0
- package/node_modules/d3-collection/src/nest.js +73 -0
- package/node_modules/d3-collection/src/set.js +39 -0
- package/node_modules/d3-collection/src/values.js +5 -0
- package/node_modules/d3-collection/yarn-error.log +1049 -0
- package/node_modules/d3-collection/yarn.lock +939 -0
- package/node_modules/d3-color/LICENSE +27 -0
- package/node_modules/d3-color/README.md +177 -0
- package/node_modules/d3-color/dist/d3-color.js +581 -0
- package/node_modules/d3-color/dist/d3-color.min.js +2 -0
- package/node_modules/d3-color/package.json +81 -0
- package/node_modules/d3-color/src/color.js +371 -0
- package/node_modules/d3-color/src/cubehelix.js +61 -0
- package/node_modules/d3-color/src/define.js +10 -0
- package/node_modules/d3-color/src/index.js +3 -0
- package/node_modules/d3-color/src/lab.js +123 -0
- package/node_modules/d3-color/src/math.js +2 -0
- package/node_modules/d3-contour/.eslintrc.json +16 -0
- package/node_modules/d3-contour/LICENSE +27 -0
- package/node_modules/d3-contour/README.md +172 -0
- package/node_modules/d3-contour/dist/d3-contour.js +431 -0
- package/node_modules/d3-contour/dist/d3-contour.min.js +2 -0
- package/node_modules/d3-contour/package.json +71 -0
- package/node_modules/d3-contour/rollup.config.js +36 -0
- package/node_modules/d3-contour/src/area.js +5 -0
- package/node_modules/d3-contour/src/array.js +3 -0
- package/node_modules/d3-contour/src/ascending.js +3 -0
- package/node_modules/d3-contour/src/blur.js +43 -0
- package/node_modules/d3-contour/src/constant.js +5 -0
- package/node_modules/d3-contour/src/contains.js +27 -0
- package/node_modules/d3-contour/src/contours.js +203 -0
- package/node_modules/d3-contour/src/density.js +133 -0
- package/node_modules/d3-contour/src/index.js +2 -0
- package/node_modules/d3-contour/src/noop.js +1 -0
- package/node_modules/d3-contour/yarn.lock +939 -0
- package/node_modules/d3-dispatch/LICENSE +27 -0
- package/node_modules/d3-dispatch/README.md +82 -0
- package/node_modules/d3-dispatch/dist/d3-dispatch.js +95 -0
- package/node_modules/d3-dispatch/dist/d3-dispatch.min.js +2 -0
- package/node_modules/d3-dispatch/package.json +79 -0
- package/node_modules/d3-dispatch/src/dispatch.js +84 -0
- package/node_modules/d3-dispatch/src/index.js +1 -0
- package/node_modules/d3-drag/LICENSE +27 -0
- package/node_modules/d3-drag/README.md +235 -0
- package/node_modules/d3-drag/dist/d3-drag.js +234 -0
- package/node_modules/d3-drag/dist/d3-drag.min.js +2 -0
- package/node_modules/d3-drag/package.json +80 -0
- package/node_modules/d3-drag/src/constant.js +5 -0
- package/node_modules/d3-drag/src/drag.js +167 -0
- package/node_modules/d3-drag/src/event.js +17 -0
- package/node_modules/d3-drag/src/index.js +2 -0
- package/node_modules/d3-drag/src/nodrag.js +28 -0
- package/node_modules/d3-drag/src/noevent.js +10 -0
- package/node_modules/d3-dsv/LICENSE +27 -0
- package/node_modules/d3-dsv/README.md +473 -0
- package/node_modules/d3-dsv/bin/dsv2dsv +32 -0
- package/node_modules/d3-dsv/bin/dsv2json +33 -0
- package/node_modules/d3-dsv/bin/json2dsv +33 -0
- package/node_modules/d3-dsv/dist/d3-dsv.js +233 -0
- package/node_modules/d3-dsv/dist/d3-dsv.min.js +2 -0
- package/node_modules/d3-dsv/node_modules/commander/CHANGELOG.md +419 -0
- package/node_modules/d3-dsv/node_modules/commander/LICENSE +22 -0
- package/node_modules/d3-dsv/node_modules/commander/Readme.md +428 -0
- package/node_modules/d3-dsv/node_modules/commander/index.js +1224 -0
- package/node_modules/d3-dsv/node_modules/commander/package.json +73 -0
- package/node_modules/d3-dsv/node_modules/commander/typings/index.d.ts +310 -0
- package/node_modules/d3-dsv/package.json +93 -0
- package/node_modules/d3-dsv/src/autoType.js +20 -0
- package/node_modules/d3-dsv/src/csv.js +11 -0
- package/node_modules/d3-dsv/src/dsv.js +164 -0
- package/node_modules/d3-dsv/src/index.js +4 -0
- package/node_modules/d3-dsv/src/tsv.js +11 -0
- package/node_modules/d3-ease/LICENSE +28 -0
- package/node_modules/d3-ease/README.md +241 -0
- package/node_modules/d3-ease/dist/d3-ease.js +264 -0
- package/node_modules/d3-ease/dist/d3-ease.min.js +2 -0
- package/node_modules/d3-ease/package.json +76 -0
- package/node_modules/d3-ease/src/back.js +37 -0
- package/node_modules/d3-ease/src/bounce.js +22 -0
- package/node_modules/d3-ease/src/circle.js +11 -0
- package/node_modules/d3-ease/src/cubic.js +11 -0
- package/node_modules/d3-ease/src/elastic.js +46 -0
- package/node_modules/d3-ease/src/exp.js +13 -0
- package/node_modules/d3-ease/src/index.js +66 -0
- package/node_modules/d3-ease/src/linear.js +3 -0
- package/node_modules/d3-ease/src/math.js +4 -0
- package/node_modules/d3-ease/src/poly.js +37 -0
- package/node_modules/d3-ease/src/quad.js +11 -0
- package/node_modules/d3-ease/src/sin.js +14 -0
- package/node_modules/d3-fetch/LICENSE +27 -0
- package/node_modules/d3-fetch/README.md +104 -0
- package/node_modules/d3-fetch/dist/d3-fetch.js +103 -0
- package/node_modules/d3-fetch/dist/d3-fetch.min.js +2 -0
- package/node_modules/d3-fetch/package.json +77 -0
- package/node_modules/d3-fetch/src/blob.js +8 -0
- package/node_modules/d3-fetch/src/buffer.js +8 -0
- package/node_modules/d3-fetch/src/dsv.js +22 -0
- package/node_modules/d3-fetch/src/image.js +9 -0
- package/node_modules/d3-fetch/src/index.js +7 -0
- package/node_modules/d3-fetch/src/json.js +9 -0
- package/node_modules/d3-fetch/src/text.js +8 -0
- package/node_modules/d3-fetch/src/xml.js +15 -0
- package/node_modules/d3-force/.eslintrc.json +15 -0
- package/node_modules/d3-force/LICENSE +27 -0
- package/node_modules/d3-force/README.md +459 -0
- package/node_modules/d3-force/dist/d3-force.js +668 -0
- package/node_modules/d3-force/dist/d3-force.min.js +2 -0
- package/node_modules/d3-force/package.json +78 -0
- package/node_modules/d3-force/rollup.config.js +36 -0
- package/node_modules/d3-force/src/center.js +36 -0
- package/node_modules/d3-force/src/collide.js +98 -0
- package/node_modules/d3-force/src/constant.js +5 -0
- package/node_modules/d3-force/src/index.js +8 -0
- package/node_modules/d3-force/src/jiggle.js +3 -0
- package/node_modules/d3-force/src/link.js +116 -0
- package/node_modules/d3-force/src/manyBody.js +114 -0
- package/node_modules/d3-force/src/radial.js +57 -0
- package/node_modules/d3-force/src/simulation.js +151 -0
- package/node_modules/d3-force/src/x.js +41 -0
- package/node_modules/d3-force/src/y.js +41 -0
- package/node_modules/d3-force/yarn.lock +951 -0
- package/node_modules/d3-format/LICENSE +27 -0
- package/node_modules/d3-format/README.md +343 -0
- package/node_modules/d3-format/dist/d3-format.js +345 -0
- package/node_modules/d3-format/dist/d3-format.min.js +2 -0
- package/node_modules/d3-format/locale/ar-001.json +7 -0
- package/node_modules/d3-format/locale/ar-AE.json +7 -0
- package/node_modules/d3-format/locale/ar-BH.json +7 -0
- package/node_modules/d3-format/locale/ar-DJ.json +7 -0
- package/node_modules/d3-format/locale/ar-DZ.json +6 -0
- package/node_modules/d3-format/locale/ar-EG.json +7 -0
- package/node_modules/d3-format/locale/ar-EH.json +6 -0
- package/node_modules/d3-format/locale/ar-ER.json +7 -0
- package/node_modules/d3-format/locale/ar-IL.json +7 -0
- package/node_modules/d3-format/locale/ar-IQ.json +7 -0
- package/node_modules/d3-format/locale/ar-JO.json +7 -0
- package/node_modules/d3-format/locale/ar-KM.json +7 -0
- package/node_modules/d3-format/locale/ar-KW.json +7 -0
- package/node_modules/d3-format/locale/ar-LB.json +7 -0
- package/node_modules/d3-format/locale/ar-LY.json +6 -0
- package/node_modules/d3-format/locale/ar-MA.json +6 -0
- package/node_modules/d3-format/locale/ar-MR.json +7 -0
- package/node_modules/d3-format/locale/ar-OM.json +7 -0
- package/node_modules/d3-format/locale/ar-PS.json +7 -0
- package/node_modules/d3-format/locale/ar-QA.json +7 -0
- package/node_modules/d3-format/locale/ar-SA.json +7 -0
- package/node_modules/d3-format/locale/ar-SD.json +7 -0
- package/node_modules/d3-format/locale/ar-SO.json +7 -0
- package/node_modules/d3-format/locale/ar-SS.json +7 -0
- package/node_modules/d3-format/locale/ar-SY.json +7 -0
- package/node_modules/d3-format/locale/ar-TD.json +7 -0
- package/node_modules/d3-format/locale/ar-TN.json +6 -0
- package/node_modules/d3-format/locale/ar-YE.json +7 -0
- package/node_modules/d3-format/locale/ca-ES.json +6 -0
- package/node_modules/d3-format/locale/cs-CZ.json +6 -0
- package/node_modules/d3-format/locale/de-CH.json +6 -0
- package/node_modules/d3-format/locale/de-DE.json +6 -0
- package/node_modules/d3-format/locale/en-CA.json +6 -0
- package/node_modules/d3-format/locale/en-GB.json +6 -0
- package/node_modules/d3-format/locale/en-IE.json +6 -0
- package/node_modules/d3-format/locale/en-IN.json +6 -0
- package/node_modules/d3-format/locale/en-US.json +6 -0
- package/node_modules/d3-format/locale/es-BO.json +7 -0
- package/node_modules/d3-format/locale/es-ES.json +6 -0
- package/node_modules/d3-format/locale/es-MX.json +6 -0
- package/node_modules/d3-format/locale/fi-FI.json +6 -0
- package/node_modules/d3-format/locale/fr-CA.json +6 -0
- package/node_modules/d3-format/locale/fr-FR.json +7 -0
- package/node_modules/d3-format/locale/he-IL.json +6 -0
- package/node_modules/d3-format/locale/hu-HU.json +6 -0
- package/node_modules/d3-format/locale/it-IT.json +6 -0
- package/node_modules/d3-format/locale/ja-JP.json +6 -0
- package/node_modules/d3-format/locale/ko-KR.json +6 -0
- package/node_modules/d3-format/locale/mk-MK.json +6 -0
- package/node_modules/d3-format/locale/nl-NL.json +6 -0
- package/node_modules/d3-format/locale/pl-PL.json +6 -0
- package/node_modules/d3-format/locale/pt-BR.json +6 -0
- package/node_modules/d3-format/locale/ru-RU.json +6 -0
- package/node_modules/d3-format/locale/sv-SE.json +6 -0
- package/node_modules/d3-format/locale/uk-UA.json +6 -0
- package/node_modules/d3-format/locale/zh-CN.json +6 -0
- package/node_modules/d3-format/package.json +77 -0
- package/node_modules/d3-format/src/defaultLocale.js +20 -0
- package/node_modules/d3-format/src/exponent.js +5 -0
- package/node_modules/d3-format/src/formatDecimal.js +20 -0
- package/node_modules/d3-format/src/formatGroup.js +18 -0
- package/node_modules/d3-format/src/formatNumerals.js +7 -0
- package/node_modules/d3-format/src/formatPrefixAuto.js +16 -0
- package/node_modules/d3-format/src/formatRounded.js +11 -0
- package/node_modules/d3-format/src/formatSpecifier.js +47 -0
- package/node_modules/d3-format/src/formatTrim.js +11 -0
- package/node_modules/d3-format/src/formatTypes.js +19 -0
- package/node_modules/d3-format/src/identity.js +3 -0
- package/node_modules/d3-format/src/index.js +6 -0
- package/node_modules/d3-format/src/locale.js +148 -0
- package/node_modules/d3-format/src/precisionFixed.js +5 -0
- package/node_modules/d3-format/src/precisionPrefix.js +5 -0
- package/node_modules/d3-format/src/precisionRound.js +6 -0
- package/node_modules/d3-geo/LICENSE +48 -0
- package/node_modules/d3-geo/README.md +683 -0
- package/node_modules/d3-geo/dist/d3-geo.js +3165 -0
- package/node_modules/d3-geo/dist/d3-geo.min.js +2 -0
- package/node_modules/d3-geo/package.json +83 -0
- package/node_modules/d3-geo/src/adder.js +40 -0
- package/node_modules/d3-geo/src/area.js +74 -0
- package/node_modules/d3-geo/src/bounds.js +179 -0
- package/node_modules/d3-geo/src/cartesian.js +33 -0
- package/node_modules/d3-geo/src/centroid.js +140 -0
- package/node_modules/d3-geo/src/circle.js +72 -0
- package/node_modules/d3-geo/src/clip/antimeridian.js +92 -0
- package/node_modules/d3-geo/src/clip/buffer.js +24 -0
- package/node_modules/d3-geo/src/clip/circle.js +177 -0
- package/node_modules/d3-geo/src/clip/extent.js +20 -0
- package/node_modules/d3-geo/src/clip/index.js +131 -0
- package/node_modules/d3-geo/src/clip/line.js +59 -0
- package/node_modules/d3-geo/src/clip/rectangle.js +168 -0
- package/node_modules/d3-geo/src/clip/rejoin.js +103 -0
- package/node_modules/d3-geo/src/compose.js +12 -0
- package/node_modules/d3-geo/src/constant.js +5 -0
- package/node_modules/d3-geo/src/contains.js +97 -0
- package/node_modules/d3-geo/src/distance.js +10 -0
- package/node_modules/d3-geo/src/graticule.js +105 -0
- package/node_modules/d3-geo/src/identity.js +3 -0
- package/node_modules/d3-geo/src/index.js +34 -0
- package/node_modules/d3-geo/src/interpolate.js +36 -0
- package/node_modules/d3-geo/src/length.js +53 -0
- package/node_modules/d3-geo/src/math.js +35 -0
- package/node_modules/d3-geo/src/noop.js +1 -0
- package/node_modules/d3-geo/src/path/area.js +50 -0
- package/node_modules/d3-geo/src/path/bounds.js +28 -0
- package/node_modules/d3-geo/src/path/centroid.js +100 -0
- package/node_modules/d3-geo/src/path/context.js +45 -0
- package/node_modules/d3-geo/src/path/index.js +61 -0
- package/node_modules/d3-geo/src/path/measure.js +45 -0
- package/node_modules/d3-geo/src/path/string.js +59 -0
- package/node_modules/d3-geo/src/pointEqual.js +5 -0
- package/node_modules/d3-geo/src/polygonContains.js +79 -0
- package/node_modules/d3-geo/src/projection/albers.js +10 -0
- package/node_modules/d3-geo/src/projection/albersUsa.js +111 -0
- package/node_modules/d3-geo/src/projection/azimuthal.js +26 -0
- package/node_modules/d3-geo/src/projection/azimuthalEqualArea.js +17 -0
- package/node_modules/d3-geo/src/projection/azimuthalEquidistant.js +17 -0
- package/node_modules/d3-geo/src/projection/conic.js +15 -0
- package/node_modules/d3-geo/src/projection/conicConformal.js +38 -0
- package/node_modules/d3-geo/src/projection/conicEqualArea.js +33 -0
- package/node_modules/d3-geo/src/projection/conicEquidistant.js +32 -0
- package/node_modules/d3-geo/src/projection/cylindricalEqualArea.js +15 -0
- package/node_modules/d3-geo/src/projection/equalEarth.js +36 -0
- package/node_modules/d3-geo/src/projection/equirectangular.js +12 -0
- package/node_modules/d3-geo/src/projection/fit.js +47 -0
- package/node_modules/d3-geo/src/projection/gnomonic.js +16 -0
- package/node_modules/d3-geo/src/projection/identity.js +85 -0
- package/node_modules/d3-geo/src/projection/index.js +176 -0
- package/node_modules/d3-geo/src/projection/mercator.js +52 -0
- package/node_modules/d3-geo/src/projection/naturalEarth1.js +28 -0
- package/node_modules/d3-geo/src/projection/orthographic.js +15 -0
- package/node_modules/d3-geo/src/projection/resample.js +102 -0
- package/node_modules/d3-geo/src/projection/stereographic.js +18 -0
- package/node_modules/d3-geo/src/projection/transverseMercator.js +27 -0
- package/node_modules/d3-geo/src/rotation.js +76 -0
- package/node_modules/d3-geo/src/stream.js +69 -0
- package/node_modules/d3-geo/src/transform.js +26 -0
- package/node_modules/d3-hierarchy/LICENSE +27 -0
- package/node_modules/d3-hierarchy/README.md +548 -0
- package/node_modules/d3-hierarchy/dist/d3-hierarchy.js +1290 -0
- package/node_modules/d3-hierarchy/dist/d3-hierarchy.min.js +2 -0
- package/node_modules/d3-hierarchy/package.json +81 -0
- package/node_modules/d3-hierarchy/src/accessors.js +8 -0
- package/node_modules/d3-hierarchy/src/array.js +16 -0
- package/node_modules/d3-hierarchy/src/cluster.js +84 -0
- package/node_modules/d3-hierarchy/src/constant.js +9 -0
- package/node_modules/d3-hierarchy/src/hierarchy/ancestors.js +7 -0
- package/node_modules/d3-hierarchy/src/hierarchy/count.js +12 -0
- package/node_modules/d3-hierarchy/src/hierarchy/descendants.js +7 -0
- package/node_modules/d3-hierarchy/src/hierarchy/each.js +13 -0
- package/node_modules/d3-hierarchy/src/hierarchy/eachAfter.js +13 -0
- package/node_modules/d3-hierarchy/src/hierarchy/eachBefore.js +10 -0
- package/node_modules/d3-hierarchy/src/hierarchy/index.js +79 -0
- package/node_modules/d3-hierarchy/src/hierarchy/leaves.js +9 -0
- package/node_modules/d3-hierarchy/src/hierarchy/links.js +9 -0
- package/node_modules/d3-hierarchy/src/hierarchy/path.js +30 -0
- package/node_modules/d3-hierarchy/src/hierarchy/sort.js +7 -0
- package/node_modules/d3-hierarchy/src/hierarchy/sum.js +9 -0
- package/node_modules/d3-hierarchy/src/index.js +15 -0
- package/node_modules/d3-hierarchy/src/pack/enclose.js +118 -0
- package/node_modules/d3-hierarchy/src/pack/index.js +79 -0
- package/node_modules/d3-hierarchy/src/pack/siblings.js +118 -0
- package/node_modules/d3-hierarchy/src/partition.js +52 -0
- package/node_modules/d3-hierarchy/src/stratify.js +73 -0
- package/node_modules/d3-hierarchy/src/tree.js +237 -0
- package/node_modules/d3-hierarchy/src/treemap/binary.js +46 -0
- package/node_modules/d3-hierarchy/src/treemap/dice.js +12 -0
- package/node_modules/d3-hierarchy/src/treemap/index.js +94 -0
- package/node_modules/d3-hierarchy/src/treemap/resquarify.js +36 -0
- package/node_modules/d3-hierarchy/src/treemap/round.js +6 -0
- package/node_modules/d3-hierarchy/src/treemap/slice.js +12 -0
- package/node_modules/d3-hierarchy/src/treemap/sliceDice.js +6 -0
- package/node_modules/d3-hierarchy/src/treemap/squarify.js +66 -0
- package/node_modules/d3-interpolate/LICENSE +27 -0
- package/node_modules/d3-interpolate/README.md +250 -0
- package/node_modules/d3-interpolate/dist/d3-interpolate.js +593 -0
- package/node_modules/d3-interpolate/dist/d3-interpolate.min.js +2 -0
- package/node_modules/d3-interpolate/package.json +82 -0
- package/node_modules/d3-interpolate/src/array.js +22 -0
- package/node_modules/d3-interpolate/src/basis.js +19 -0
- package/node_modules/d3-interpolate/src/basisClosed.js +13 -0
- package/node_modules/d3-interpolate/src/color.js +29 -0
- package/node_modules/d3-interpolate/src/constant.js +5 -0
- package/node_modules/d3-interpolate/src/cubehelix.js +29 -0
- package/node_modules/d3-interpolate/src/date.js +6 -0
- package/node_modules/d3-interpolate/src/discrete.js +6 -0
- package/node_modules/d3-interpolate/src/hcl.js +21 -0
- package/node_modules/d3-interpolate/src/hsl.js +21 -0
- package/node_modules/d3-interpolate/src/hue.js +9 -0
- package/node_modules/d3-interpolate/src/index.js +21 -0
- package/node_modules/d3-interpolate/src/lab.js +16 -0
- package/node_modules/d3-interpolate/src/number.js +5 -0
- package/node_modules/d3-interpolate/src/numberArray.js +14 -0
- package/node_modules/d3-interpolate/src/object.js +23 -0
- package/node_modules/d3-interpolate/src/piecewise.js +8 -0
- package/node_modules/d3-interpolate/src/quantize.js +5 -0
- package/node_modules/d3-interpolate/src/rgb.js +55 -0
- package/node_modules/d3-interpolate/src/round.js +5 -0
- package/node_modules/d3-interpolate/src/string.js +64 -0
- package/node_modules/d3-interpolate/src/transform/decompose.js +26 -0
- package/node_modules/d3-interpolate/src/transform/index.js +63 -0
- package/node_modules/d3-interpolate/src/transform/parse.js +25 -0
- package/node_modules/d3-interpolate/src/value.js +22 -0
- package/node_modules/d3-interpolate/src/zoom.js +64 -0
- package/node_modules/d3-path/LICENSE +27 -0
- package/node_modules/d3-path/README.md +78 -0
- package/node_modules/d3-path/dist/d3-path.js +141 -0
- package/node_modules/d3-path/dist/d3-path.min.js +2 -0
- package/node_modules/d3-path/package.json +80 -0
- package/node_modules/d3-path/src/index.js +1 -0
- package/node_modules/d3-path/src/path.js +130 -0
- package/node_modules/d3-polygon/LICENSE +27 -0
- package/node_modules/d3-polygon/README.md +40 -0
- package/node_modules/d3-polygon/dist/d3-polygon.js +150 -0
- package/node_modules/d3-polygon/dist/d3-polygon.min.js +2 -0
- package/node_modules/d3-polygon/package.json +75 -0
- package/node_modules/d3-polygon/src/area.js +15 -0
- package/node_modules/d3-polygon/src/centroid.js +20 -0
- package/node_modules/d3-polygon/src/contains.js +16 -0
- package/node_modules/d3-polygon/src/cross.js +7 -0
- package/node_modules/d3-polygon/src/hull.js +49 -0
- package/node_modules/d3-polygon/src/index.js +5 -0
- package/node_modules/d3-polygon/src/length.js +23 -0
- package/node_modules/d3-quadtree/LICENSE +27 -0
- package/node_modules/d3-quadtree/README.md +163 -0
- package/node_modules/d3-quadtree/dist/d3-quadtree.js +419 -0
- package/node_modules/d3-quadtree/dist/d3-quadtree.min.js +2 -0
- package/node_modules/d3-quadtree/package.json +74 -0
- package/node_modules/d3-quadtree/src/add.js +84 -0
- package/node_modules/d3-quadtree/src/cover.js +43 -0
- package/node_modules/d3-quadtree/src/data.js +7 -0
- package/node_modules/d3-quadtree/src/extent.js +5 -0
- package/node_modules/d3-quadtree/src/find.js +70 -0
- package/node_modules/d3-quadtree/src/index.js +1 -0
- package/node_modules/d3-quadtree/src/quad.js +7 -0
- package/node_modules/d3-quadtree/src/quadtree.js +73 -0
- package/node_modules/d3-quadtree/src/remove.js +62 -0
- package/node_modules/d3-quadtree/src/root.js +3 -0
- package/node_modules/d3-quadtree/src/size.js +7 -0
- package/node_modules/d3-quadtree/src/visit.js +16 -0
- package/node_modules/d3-quadtree/src/visitAfter.js +21 -0
- package/node_modules/d3-quadtree/src/x.js +7 -0
- package/node_modules/d3-quadtree/src/y.js +7 -0
- package/node_modules/d3-random/.eslintrc.json +15 -0
- package/node_modules/d3-random/LICENSE +27 -0
- package/node_modules/d3-random/README.md +63 -0
- package/node_modules/d3-random/dist/d3-random.js +115 -0
- package/node_modules/d3-random/dist/d3-random.min.js +2 -0
- package/node_modules/d3-random/package.json +70 -0
- package/node_modules/d3-random/rollup.config.js +36 -0
- package/node_modules/d3-random/src/bates.js +15 -0
- package/node_modules/d3-random/src/defaultSource.js +3 -0
- package/node_modules/d3-random/src/exponential.js +13 -0
- package/node_modules/d3-random/src/index.js +6 -0
- package/node_modules/d3-random/src/irwinHall.js +14 -0
- package/node_modules/d3-random/src/logNormal.js +15 -0
- package/node_modules/d3-random/src/normal.js +28 -0
- package/node_modules/d3-random/src/uniform.js +17 -0
- package/node_modules/d3-random/yarn.lock +943 -0
- package/node_modules/d3-scale/.eslintrc.json +15 -0
- package/node_modules/d3-scale/LICENSE +27 -0
- package/node_modules/d3-scale/README.md +952 -0
- package/node_modules/d3-scale/dist/d3-scale.js +1165 -0
- package/node_modules/d3-scale/dist/d3-scale.min.js +2 -0
- package/node_modules/d3-scale/package.json +77 -0
- package/node_modules/d3-scale/rollup.config.js +36 -0
- package/node_modules/d3-scale/src/array.js +4 -0
- package/node_modules/d3-scale/src/band.js +100 -0
- package/node_modules/d3-scale/src/colors.js +5 -0
- package/node_modules/d3-scale/src/constant.js +5 -0
- package/node_modules/d3-scale/src/continuous.js +124 -0
- package/node_modules/d3-scale/src/diverging.js +91 -0
- package/node_modules/d3-scale/src/identity.js +29 -0
- package/node_modules/d3-scale/src/index.js +74 -0
- package/node_modules/d3-scale/src/init.js +17 -0
- package/node_modules/d3-scale/src/linear.js +72 -0
- package/node_modules/d3-scale/src/log.js +145 -0
- package/node_modules/d3-scale/src/nice.js +18 -0
- package/node_modules/d3-scale/src/number.js +3 -0
- package/node_modules/d3-scale/src/ordinal.js +45 -0
- package/node_modules/d3-scale/src/pow.js +50 -0
- package/node_modules/d3-scale/src/quantile.js +58 -0
- package/node_modules/d3-scale/src/quantize.js +57 -0
- package/node_modules/d3-scale/src/sequential.js +95 -0
- package/node_modules/d3-scale/src/sequentialQuantile.js +30 -0
- package/node_modules/d3-scale/src/symlog.js +35 -0
- package/node_modules/d3-scale/src/threshold.js +40 -0
- package/node_modules/d3-scale/src/tickFormat.js +29 -0
- package/node_modules/d3-scale/src/time.js +135 -0
- package/node_modules/d3-scale/src/utcTime.js +8 -0
- package/node_modules/d3-scale/yarn.lock +967 -0
- package/node_modules/d3-scale-chromatic/LICENSE +44 -0
- package/node_modules/d3-scale-chromatic/README.md +386 -0
- package/node_modules/d3-scale-chromatic/dist/d3-scale-chromatic.js +521 -0
- package/node_modules/d3-scale-chromatic/dist/d3-scale-chromatic.min.js +2 -0
- package/node_modules/d3-scale-chromatic/package.json +79 -0
- package/node_modules/d3-scale-chromatic/src/categorical/Accent.js +3 -0
- package/node_modules/d3-scale-chromatic/src/categorical/Dark2.js +3 -0
- package/node_modules/d3-scale-chromatic/src/categorical/Paired.js +3 -0
- package/node_modules/d3-scale-chromatic/src/categorical/Pastel1.js +3 -0
- package/node_modules/d3-scale-chromatic/src/categorical/Pastel2.js +3 -0
- package/node_modules/d3-scale-chromatic/src/categorical/Set1.js +3 -0
- package/node_modules/d3-scale-chromatic/src/categorical/Set2.js +3 -0
- package/node_modules/d3-scale-chromatic/src/categorical/Set3.js +3 -0
- package/node_modules/d3-scale-chromatic/src/categorical/Tableau10.js +3 -0
- package/node_modules/d3-scale-chromatic/src/categorical/category10.js +3 -0
- package/node_modules/d3-scale-chromatic/src/colors.js +5 -0
- package/node_modules/d3-scale-chromatic/src/diverging/BrBG.js +16 -0
- package/node_modules/d3-scale-chromatic/src/diverging/PRGn.js +16 -0
- package/node_modules/d3-scale-chromatic/src/diverging/PiYG.js +16 -0
- package/node_modules/d3-scale-chromatic/src/diverging/PuOr.js +16 -0
- package/node_modules/d3-scale-chromatic/src/diverging/RdBu.js +16 -0
- package/node_modules/d3-scale-chromatic/src/diverging/RdGy.js +16 -0
- package/node_modules/d3-scale-chromatic/src/diverging/RdYlBu.js +16 -0
- package/node_modules/d3-scale-chromatic/src/diverging/RdYlGn.js +16 -0
- package/node_modules/d3-scale-chromatic/src/diverging/Spectral.js +16 -0
- package/node_modules/d3-scale-chromatic/src/index.js +43 -0
- package/node_modules/d3-scale-chromatic/src/ramp.js +5 -0
- package/node_modules/d3-scale-chromatic/src/rampClosed.js +9 -0
- package/node_modules/d3-scale-chromatic/src/scheme.js +11 -0
- package/node_modules/d3-scale-chromatic/src/sequential-multi/BuGn.js +14 -0
- package/node_modules/d3-scale-chromatic/src/sequential-multi/BuPu.js +14 -0
- package/node_modules/d3-scale-chromatic/src/sequential-multi/GnBu.js +14 -0
- package/node_modules/d3-scale-chromatic/src/sequential-multi/OrRd.js +14 -0
- package/node_modules/d3-scale-chromatic/src/sequential-multi/PuBu.js +14 -0
- package/node_modules/d3-scale-chromatic/src/sequential-multi/PuBuGn.js +14 -0
- package/node_modules/d3-scale-chromatic/src/sequential-multi/PuRd.js +14 -0
- package/node_modules/d3-scale-chromatic/src/sequential-multi/RdPu.js +14 -0
- package/node_modules/d3-scale-chromatic/src/sequential-multi/YlGn.js +14 -0
- package/node_modules/d3-scale-chromatic/src/sequential-multi/YlGnBu.js +14 -0
- package/node_modules/d3-scale-chromatic/src/sequential-multi/YlOrBr.js +14 -0
- package/node_modules/d3-scale-chromatic/src/sequential-multi/YlOrRd.js +14 -0
- package/node_modules/d3-scale-chromatic/src/sequential-multi/cividis.js +8 -0
- package/node_modules/d3-scale-chromatic/src/sequential-multi/cubehelix.js +4 -0
- package/node_modules/d3-scale-chromatic/src/sequential-multi/rainbow.js +17 -0
- package/node_modules/d3-scale-chromatic/src/sequential-multi/sinebow.js +14 -0
- package/node_modules/d3-scale-chromatic/src/sequential-multi/turbo.js +8 -0
- package/node_modules/d3-scale-chromatic/src/sequential-multi/viridis.js +16 -0
- package/node_modules/d3-scale-chromatic/src/sequential-single/Blues.js +14 -0
- package/node_modules/d3-scale-chromatic/src/sequential-single/Greens.js +14 -0
- package/node_modules/d3-scale-chromatic/src/sequential-single/Greys.js +14 -0
- package/node_modules/d3-scale-chromatic/src/sequential-single/Oranges.js +14 -0
- package/node_modules/d3-scale-chromatic/src/sequential-single/Purples.js +14 -0
- package/node_modules/d3-scale-chromatic/src/sequential-single/Reds.js +14 -0
- package/node_modules/d3-selection/LICENSE +26 -0
- package/node_modules/d3-selection/README.md +829 -0
- package/node_modules/d3-selection/dist/d3-selection.js +989 -0
- package/node_modules/d3-selection/dist/d3-selection.min.js +2 -0
- package/node_modules/d3-selection/package.json +79 -0
- package/node_modules/d3-selection/src/constant.js +5 -0
- package/node_modules/d3-selection/src/create.js +6 -0
- package/node_modules/d3-selection/src/creator.js +25 -0
- package/node_modules/d3-selection/src/identity.js +3 -0
- package/node_modules/d3-selection/src/index.js +18 -0
- package/node_modules/d3-selection/src/local.js +27 -0
- package/node_modules/d3-selection/src/matcher.js +5 -0
- package/node_modules/d3-selection/src/mouse.js +8 -0
- package/node_modules/d3-selection/src/namespace.js +7 -0
- package/node_modules/d3-selection/src/namespaces.js +9 -0
- package/node_modules/d3-selection/src/point.js +13 -0
- package/node_modules/d3-selection/src/select.js +7 -0
- package/node_modules/d3-selection/src/selectAll.js +7 -0
- package/node_modules/d3-selection/src/selection/append.js +8 -0
- package/node_modules/d3-selection/src/selection/attr.js +57 -0
- package/node_modules/d3-selection/src/selection/call.js +6 -0
- package/node_modules/d3-selection/src/selection/classed.js +75 -0
- package/node_modules/d3-selection/src/selection/clone.js +13 -0
- package/node_modules/d3-selection/src/selection/data.js +118 -0
- package/node_modules/d3-selection/src/selection/datum.js +5 -0
- package/node_modules/d3-selection/src/selection/dispatch.js +34 -0
- package/node_modules/d3-selection/src/selection/each.js +10 -0
- package/node_modules/d3-selection/src/selection/empty.js +3 -0
- package/node_modules/d3-selection/src/selection/enter.js +22 -0
- package/node_modules/d3-selection/src/selection/exit.js +6 -0
- package/node_modules/d3-selection/src/selection/filter.js +16 -0
- package/node_modules/d3-selection/src/selection/html.js +25 -0
- package/node_modules/d3-selection/src/selection/index.js +79 -0
- package/node_modules/d3-selection/src/selection/insert.js +14 -0
- package/node_modules/d3-selection/src/selection/join.js +7 -0
- package/node_modules/d3-selection/src/selection/lower.js +7 -0
- package/node_modules/d3-selection/src/selection/merge.js +18 -0
- package/node_modules/d3-selection/src/selection/node.js +11 -0
- package/node_modules/d3-selection/src/selection/nodes.js +5 -0
- package/node_modules/d3-selection/src/selection/on.js +107 -0
- package/node_modules/d3-selection/src/selection/order.js +13 -0
- package/node_modules/d3-selection/src/selection/property.js +28 -0
- package/node_modules/d3-selection/src/selection/raise.js +7 -0
- package/node_modules/d3-selection/src/selection/remove.js +8 -0
- package/node_modules/d3-selection/src/selection/select.js +17 -0
- package/node_modules/d3-selection/src/selection/selectAll.js +17 -0
- package/node_modules/d3-selection/src/selection/size.js +5 -0
- package/node_modules/d3-selection/src/selection/sort.js +24 -0
- package/node_modules/d3-selection/src/selection/sparse.js +3 -0
- package/node_modules/d3-selection/src/selection/style.js +35 -0
- package/node_modules/d3-selection/src/selection/text.js +25 -0
- package/node_modules/d3-selection/src/selector.js +7 -0
- package/node_modules/d3-selection/src/selectorAll.js +9 -0
- package/node_modules/d3-selection/src/sourceEvent.js +7 -0
- package/node_modules/d3-selection/src/touch.js +14 -0
- package/node_modules/d3-selection/src/touches.js +12 -0
- package/node_modules/d3-selection/src/window.js +5 -0
- package/node_modules/d3-shape/LICENSE +27 -0
- package/node_modules/d3-shape/README.md +1149 -0
- package/node_modules/d3-shape/dist/d3-shape.js +1949 -0
- package/node_modules/d3-shape/dist/d3-shape.min.js +2 -0
- package/node_modules/d3-shape/package.json +79 -0
- package/node_modules/d3-shape/src/arc.js +261 -0
- package/node_modules/d3-shape/src/area.js +109 -0
- package/node_modules/d3-shape/src/areaRadial.js +29 -0
- package/node_modules/d3-shape/src/array.js +1 -0
- package/node_modules/d3-shape/src/constant.js +5 -0
- package/node_modules/d3-shape/src/curve/basis.js +51 -0
- package/node_modules/d3-shape/src/curve/basisClosed.js +52 -0
- package/node_modules/d3-shape/src/curve/basisOpen.js +39 -0
- package/node_modules/d3-shape/src/curve/bundle.js +56 -0
- package/node_modules/d3-shape/src/curve/cardinal.js +61 -0
- package/node_modules/d3-shape/src/curve/cardinalClosed.js +61 -0
- package/node_modules/d3-shape/src/curve/cardinalOpen.js +49 -0
- package/node_modules/d3-shape/src/curve/catmullRom.js +88 -0
- package/node_modules/d3-shape/src/curve/catmullRomClosed.js +74 -0
- package/node_modules/d3-shape/src/curve/catmullRomOpen.js +62 -0
- package/node_modules/d3-shape/src/curve/linear.js +31 -0
- package/node_modules/d3-shape/src/curve/linearClosed.js +25 -0
- package/node_modules/d3-shape/src/curve/monotone.js +104 -0
- package/node_modules/d3-shape/src/curve/natural.js +65 -0
- package/node_modules/d3-shape/src/curve/radial.js +36 -0
- package/node_modules/d3-shape/src/curve/step.js +53 -0
- package/node_modules/d3-shape/src/descending.js +3 -0
- package/node_modules/d3-shape/src/identity.js +3 -0
- package/node_modules/d3-shape/src/index.js +46 -0
- package/node_modules/d3-shape/src/line.js +55 -0
- package/node_modules/d3-shape/src/lineRadial.js +19 -0
- package/node_modules/d3-shape/src/link/index.js +84 -0
- package/node_modules/d3-shape/src/math.js +20 -0
- package/node_modules/d3-shape/src/noop.js +1 -0
- package/node_modules/d3-shape/src/offset/diverging.js +14 -0
- package/node_modules/d3-shape/src/offset/expand.js +10 -0
- package/node_modules/d3-shape/src/offset/none.js +9 -0
- package/node_modules/d3-shape/src/offset/silhouette.js +10 -0
- package/node_modules/d3-shape/src/offset/wiggle.js +24 -0
- package/node_modules/d3-shape/src/order/appearance.js +12 -0
- package/node_modules/d3-shape/src/order/ascending.js +12 -0
- package/node_modules/d3-shape/src/order/descending.js +5 -0
- package/node_modules/d3-shape/src/order/insideOut.js +27 -0
- package/node_modules/d3-shape/src/order/none.js +5 -0
- package/node_modules/d3-shape/src/order/reverse.js +5 -0
- package/node_modules/d3-shape/src/pie.js +79 -0
- package/node_modules/d3-shape/src/point.js +7 -0
- package/node_modules/d3-shape/src/pointRadial.js +3 -0
- package/node_modules/d3-shape/src/stack.js +57 -0
- package/node_modules/d3-shape/src/symbol/circle.js +9 -0
- package/node_modules/d3-shape/src/symbol/cross.js +18 -0
- package/node_modules/d3-shape/src/symbol/diamond.js +14 -0
- package/node_modules/d3-shape/src/symbol/square.js +7 -0
- package/node_modules/d3-shape/src/symbol/star.js +24 -0
- package/node_modules/d3-shape/src/symbol/triangle.js +11 -0
- package/node_modules/d3-shape/src/symbol/wye.js +26 -0
- package/node_modules/d3-shape/src/symbol.js +46 -0
- package/node_modules/d3-time/LICENSE +27 -0
- package/node_modules/d3-time/README.md +333 -0
- package/node_modules/d3-time/dist/d3-time.js +373 -0
- package/node_modules/d3-time/dist/d3-time.min.js +2 -0
- package/node_modules/d3-time/package.json +76 -0
- package/node_modules/d3-time/src/day.js +15 -0
- package/node_modules/d3-time/src/duration.js +5 -0
- package/node_modules/d3-time/src/hour.js +15 -0
- package/node_modules/d3-time/src/index.js +105 -0
- package/node_modules/d3-time/src/interval.js +70 -0
- package/node_modules/d3-time/src/millisecond.js +26 -0
- package/node_modules/d3-time/src/minute.js +15 -0
- package/node_modules/d3-time/src/month.js +15 -0
- package/node_modules/d3-time/src/second.js +15 -0
- package/node_modules/d3-time/src/utcDay.js +15 -0
- package/node_modules/d3-time/src/utcHour.js +15 -0
- package/node_modules/d3-time/src/utcMinute.js +15 -0
- package/node_modules/d3-time/src/utcMonth.js +15 -0
- package/node_modules/d3-time/src/utcWeek.js +29 -0
- package/node_modules/d3-time/src/utcYear.js +26 -0
- package/node_modules/d3-time/src/week.js +29 -0
- package/node_modules/d3-time/src/year.js +26 -0
- package/node_modules/d3-time-format/LICENSE +27 -0
- package/node_modules/d3-time-format/README.md +199 -0
- package/node_modules/d3-time-format/dist/d3-time-format.js +743 -0
- package/node_modules/d3-time-format/dist/d3-time-format.min.js +2 -0
- package/node_modules/d3-time-format/locale/ar-EG.json +10 -0
- package/node_modules/d3-time-format/locale/ca-ES.json +10 -0
- package/node_modules/d3-time-format/locale/cs-CZ.json +10 -0
- package/node_modules/d3-time-format/locale/da-DK.json +10 -0
- package/node_modules/d3-time-format/locale/de-CH.json +10 -0
- package/node_modules/d3-time-format/locale/de-DE.json +10 -0
- package/node_modules/d3-time-format/locale/en-CA.json +10 -0
- package/node_modules/d3-time-format/locale/en-GB.json +10 -0
- package/node_modules/d3-time-format/locale/en-US.json +10 -0
- package/node_modules/d3-time-format/locale/es-ES.json +10 -0
- package/node_modules/d3-time-format/locale/es-MX.json +10 -0
- package/node_modules/d3-time-format/locale/fa-IR.json +10 -0
- package/node_modules/d3-time-format/locale/fi-FI.json +10 -0
- package/node_modules/d3-time-format/locale/fr-CA.json +10 -0
- package/node_modules/d3-time-format/locale/fr-FR.json +10 -0
- package/node_modules/d3-time-format/locale/he-IL.json +10 -0
- package/node_modules/d3-time-format/locale/hu-HU.json +10 -0
- package/node_modules/d3-time-format/locale/it-IT.json +10 -0
- package/node_modules/d3-time-format/locale/ja-JP.json +10 -0
- package/node_modules/d3-time-format/locale/ko-KR.json +10 -0
- package/node_modules/d3-time-format/locale/mk-MK.json +10 -0
- package/node_modules/d3-time-format/locale/nb-NO.json +10 -0
- package/node_modules/d3-time-format/locale/nl-NL.json +10 -0
- package/node_modules/d3-time-format/locale/pl-PL.json +10 -0
- package/node_modules/d3-time-format/locale/pt-BR.json +10 -0
- package/node_modules/d3-time-format/locale/ru-RU.json +10 -0
- package/node_modules/d3-time-format/locale/sv-SE.json +10 -0
- package/node_modules/d3-time-format/locale/tr-TR.json +10 -0
- package/node_modules/d3-time-format/locale/uk-UA.json +10 -0
- package/node_modules/d3-time-format/locale/zh-CN.json +10 -0
- package/node_modules/d3-time-format/locale/zh-TW.json +10 -0
- package/node_modules/d3-time-format/package.json +83 -0
- package/node_modules/d3-time-format/src/defaultLocale.js +27 -0
- package/node_modules/d3-time-format/src/index.js +4 -0
- package/node_modules/d3-time-format/src/isoFormat.js +13 -0
- package/node_modules/d3-time-format/src/isoParse.js +13 -0
- package/node_modules/d3-time-format/src/locale.js +699 -0
- package/node_modules/d3-timer/LICENSE +27 -0
- package/node_modules/d3-timer/README.md +75 -0
- package/node_modules/d3-timer/dist/d3-timer.js +149 -0
- package/node_modules/d3-timer/dist/d3-timer.min.js +2 -0
- package/node_modules/d3-timer/package.json +79 -0
- package/node_modules/d3-timer/src/index.js +13 -0
- package/node_modules/d3-timer/src/interval.js +13 -0
- package/node_modules/d3-timer/src/timeout.js +11 -0
- package/node_modules/d3-timer/src/timer.js +110 -0
- package/node_modules/d3-transition/LICENSE +58 -0
- package/node_modules/d3-transition/README.md +448 -0
- package/node_modules/d3-transition/dist/d3-transition.js +880 -0
- package/node_modules/d3-transition/dist/d3-transition.min.js +2 -0
- package/node_modules/d3-transition/package.json +85 -0
- package/node_modules/d3-transition/src/active.js +21 -0
- package/node_modules/d3-transition/src/index.js +4 -0
- package/node_modules/d3-transition/src/interrupt.js +24 -0
- package/node_modules/d3-transition/src/selection/index.js +6 -0
- package/node_modules/d3-transition/src/selection/interrupt.js +7 -0
- package/node_modules/d3-transition/src/selection/transition.js +42 -0
- package/node_modules/d3-transition/src/transition/attr.js +78 -0
- package/node_modules/d3-transition/src/transition/attrTween.js +44 -0
- package/node_modules/d3-transition/src/transition/delay.js +23 -0
- package/node_modules/d3-transition/src/transition/duration.js +23 -0
- package/node_modules/d3-transition/src/transition/ease.js +16 -0
- package/node_modules/d3-transition/src/transition/end.js +26 -0
- package/node_modules/d3-transition/src/transition/filter.js +16 -0
- package/node_modules/d3-transition/src/transition/index.js +68 -0
- package/node_modules/d3-transition/src/transition/interpolate.js +10 -0
- package/node_modules/d3-transition/src/transition/merge.js +19 -0
- package/node_modules/d3-transition/src/transition/on.js +32 -0
- package/node_modules/d3-transition/src/transition/remove.js +11 -0
- package/node_modules/d3-transition/src/transition/schedule.js +153 -0
- package/node_modules/d3-transition/src/transition/select.js +22 -0
- package/node_modules/d3-transition/src/transition/selectAll.js +26 -0
- package/node_modules/d3-transition/src/transition/selection.js +7 -0
- package/node_modules/d3-transition/src/transition/style.js +80 -0
- package/node_modules/d3-transition/src/transition/styleTween.js +24 -0
- package/node_modules/d3-transition/src/transition/text.js +20 -0
- package/node_modules/d3-transition/src/transition/textTween.js +24 -0
- package/node_modules/d3-transition/src/transition/transition.js +24 -0
- package/node_modules/d3-transition/src/transition/tween.js +81 -0
- package/node_modules/d3-voronoi/.eslintrc.json +16 -0
- package/node_modules/d3-voronoi/LICENSE +50 -0
- package/node_modules/d3-voronoi/README.md +164 -0
- package/node_modules/d3-voronoi/dist/d3-voronoi.js +999 -0
- package/node_modules/d3-voronoi/dist/d3-voronoi.min.js +2 -0
- package/node_modules/d3-voronoi/package.json +68 -0
- package/node_modules/d3-voronoi/rollup.config.js +36 -0
- package/node_modules/d3-voronoi/src/Beach.js +193 -0
- package/node_modules/d3-voronoi/src/Cell.js +126 -0
- package/node_modules/d3-voronoi/src/Circle.js +78 -0
- package/node_modules/d3-voronoi/src/Diagram.js +142 -0
- package/node_modules/d3-voronoi/src/Edge.js +168 -0
- package/node_modules/d3-voronoi/src/RedBlackTree.js +237 -0
- package/node_modules/d3-voronoi/src/constant.js +5 -0
- package/node_modules/d3-voronoi/src/index.js +1 -0
- package/node_modules/d3-voronoi/src/point.js +7 -0
- package/node_modules/d3-voronoi/src/voronoi.js +48 -0
- package/node_modules/d3-voronoi/yarn.lock +935 -0
- package/node_modules/d3-zoom/LICENSE +27 -0
- package/node_modules/d3-zoom/README.md +398 -0
- package/node_modules/d3-zoom/dist/d3-zoom.js +497 -0
- package/node_modules/d3-zoom/dist/d3-zoom.min.js +2 -0
- package/node_modules/d3-zoom/package.json +80 -0
- package/node_modules/d3-zoom/src/constant.js +5 -0
- package/node_modules/d3-zoom/src/event.js +5 -0
- package/node_modules/d3-zoom/src/index.js +2 -0
- package/node_modules/d3-zoom/src/noevent.js +10 -0
- package/node_modules/d3-zoom/src/transform.js +51 -0
- package/node_modules/d3-zoom/src/zoom.js +419 -0
- package/node_modules/debug/LICENSE +20 -0
- package/node_modules/debug/README.md +481 -0
- package/node_modules/debug/package.json +113 -0
- package/node_modules/debug/src/browser.js +269 -0
- package/node_modules/debug/src/common.js +274 -0
- package/node_modules/debug/src/index.js +10 -0
- package/node_modules/debug/src/node.js +263 -0
- package/node_modules/decompress-response/index.d.ts +29 -0
- package/node_modules/decompress-response/index.js +40 -0
- package/node_modules/decompress-response/license +9 -0
- package/node_modules/decompress-response/package.json +85 -0
- package/node_modules/decompress-response/readme.md +52 -0
- package/node_modules/delayed-stream/.npmignore +1 -0
- package/node_modules/delayed-stream/License +19 -0
- package/node_modules/delayed-stream/Makefile +7 -0
- package/node_modules/delayed-stream/Readme.md +141 -0
- package/node_modules/delayed-stream/lib/delayed_stream.js +107 -0
- package/node_modules/delayed-stream/package.json +65 -0
- package/node_modules/delegates/.npmignore +1 -0
- package/node_modules/delegates/History.md +22 -0
- package/node_modules/delegates/License +20 -0
- package/node_modules/delegates/Makefile +8 -0
- package/node_modules/delegates/Readme.md +94 -0
- package/node_modules/delegates/index.js +121 -0
- package/node_modules/delegates/package.json +51 -0
- package/node_modules/delegates/test/index.js +94 -0
- package/node_modules/detect-libc/LICENSE +201 -0
- package/node_modules/detect-libc/README.md +160 -0
- package/node_modules/detect-libc/index.d.ts +11 -0
- package/node_modules/detect-libc/lib/detect-libc.js +178 -0
- package/node_modules/detect-libc/lib/process.js +16 -0
- package/node_modules/detect-libc/package.json +74 -0
- package/node_modules/dirname-shim/LICENSE +20 -0
- package/node_modules/dirname-shim/README.md +11 -0
- package/node_modules/dirname-shim/package.json +62 -0
- package/node_modules/dirname-shim/shim.js +110 -0
- package/node_modules/dotenv/CHANGELOG.md +356 -0
- package/node_modules/dotenv/LICENSE +23 -0
- package/node_modules/dotenv/README.md +408 -0
- package/node_modules/dotenv/config.d.ts +1 -0
- package/node_modules/dotenv/config.js +9 -0
- package/node_modules/dotenv/lib/cli-options.js +11 -0
- package/node_modules/dotenv/lib/env-options.js +20 -0
- package/node_modules/dotenv/lib/main.d.ts +73 -0
- package/node_modules/dotenv/lib/main.js +109 -0
- package/node_modules/dotenv/package.json +87 -0
- package/node_modules/duplexer/.travis.yml +6 -0
- package/node_modules/duplexer/LICENCE +19 -0
- package/node_modules/duplexer/README.md +49 -0
- package/node_modules/duplexer/index.js +87 -0
- package/node_modules/duplexer/package.json +77 -0
- package/node_modules/duplexer/test/index.js +31 -0
- package/node_modules/duplexify/.travis.yml +6 -0
- package/node_modules/duplexify/LICENSE +21 -0
- package/node_modules/duplexify/README.md +97 -0
- package/node_modules/duplexify/example.js +21 -0
- package/node_modules/duplexify/index.js +234 -0
- package/node_modules/duplexify/package.json +69 -0
- package/node_modules/duplexify/test.js +295 -0
- package/node_modules/emoji-regex/LICENSE-MIT.txt +20 -0
- package/node_modules/emoji-regex/README.md +73 -0
- package/node_modules/emoji-regex/es2015/index.js +6 -0
- package/node_modules/emoji-regex/es2015/text.js +6 -0
- package/node_modules/emoji-regex/index.d.ts +23 -0
- package/node_modules/emoji-regex/index.js +6 -0
- package/node_modules/emoji-regex/package.json +80 -0
- package/node_modules/emoji-regex/text.js +6 -0
- package/node_modules/end-of-stream/LICENSE +21 -0
- package/node_modules/end-of-stream/README.md +54 -0
- package/node_modules/end-of-stream/index.js +94 -0
- package/node_modules/end-of-stream/package.json +69 -0
- package/node_modules/escalade/dist/index.js +22 -0
- package/node_modules/escalade/dist/index.mjs +22 -0
- package/node_modules/escalade/index.d.ts +3 -0
- package/node_modules/escalade/license +9 -0
- package/node_modules/escalade/package.json +96 -0
- package/node_modules/escalade/readme.md +211 -0
- package/node_modules/escalade/sync/index.d.ts +2 -0
- package/node_modules/escalade/sync/index.js +18 -0
- package/node_modules/escalade/sync/index.mjs +18 -0
- package/node_modules/extended-emitter/.travis.yml +6 -0
- package/node_modules/extended-emitter/LICENSE +20 -0
- package/node_modules/extended-emitter/README.md +65 -0
- package/node_modules/extended-emitter/extended-emitter.js +115 -0
- package/node_modules/extended-emitter/package.json +67 -0
- package/node_modules/extended-emitter/test.js +156 -0
- package/node_modules/fast-safe-stringify/.travis.yml +8 -0
- package/node_modules/fast-safe-stringify/CHANGELOG.md +17 -0
- package/node_modules/fast-safe-stringify/LICENSE +23 -0
- package/node_modules/fast-safe-stringify/benchmark.js +137 -0
- package/node_modules/fast-safe-stringify/index.d.ts +23 -0
- package/node_modules/fast-safe-stringify/index.js +229 -0
- package/node_modules/fast-safe-stringify/package.json +90 -0
- package/node_modules/fast-safe-stringify/readme.md +170 -0
- package/node_modules/fast-safe-stringify/test-stable.js +404 -0
- package/node_modules/fast-safe-stringify/test.js +397 -0
- package/node_modules/fast-stable-stringify/.npmignore +4 -0
- package/node_modules/fast-stable-stringify/.travis.yml +10 -0
- package/node_modules/fast-stable-stringify/LICENSE +21 -0
- package/node_modules/fast-stable-stringify/README.md +81 -0
- package/node_modules/fast-stable-stringify/cli/files-to-comparison-results.js +67 -0
- package/node_modules/fast-stable-stringify/cli/format-table.js +70 -0
- package/node_modules/fast-stable-stringify/cli/index.js +19 -0
- package/node_modules/fast-stable-stringify/fixtures/index.js +5 -0
- package/node_modules/fast-stable-stringify/fixtures/input-data-types.js +191 -0
- package/node_modules/fast-stable-stringify/fixtures/log-result.json +22 -0
- package/node_modules/fast-stable-stringify/fixtures/log.txt +24 -0
- package/node_modules/fast-stable-stringify/index.js +73 -0
- package/node_modules/fast-stable-stringify/karma.conf.js +124 -0
- package/node_modules/fast-stable-stringify/karma.conf.travis.js +95 -0
- package/node_modules/fast-stable-stringify/package.json +77 -0
- package/node_modules/fast-stable-stringify/results/escape-long/Chrome 60.0.3112 (Windows 7 0.0.0).json +57 -0
- package/node_modules/fast-stable-stringify/results/escape-long/Chrome Mobile 55.0.2883 (Android 6.0.0).json +57 -0
- package/node_modules/fast-stable-stringify/results/escape-long/Edge 14.14393.0 (Windows 10 0.0.0).json +57 -0
- package/node_modules/fast-stable-stringify/results/escape-long/Firefox 54.0.0 (Windows 7 0.0.0).json +57 -0
- package/node_modules/fast-stable-stringify/results/escape-long/IE 10.0.0 (Windows 7 0.0.0).json +57 -0
- package/node_modules/fast-stable-stringify/results/escape-long/IE 11.0.0 (Windows 7 0.0.0).json +57 -0
- package/node_modules/fast-stable-stringify/results/escape-long/IE 9.0.0 (Windows 7 0.0.0).json +57 -0
- package/node_modules/fast-stable-stringify/results/escape-long/Mobile Safari 10.0.0 (iOS 10.3.0).json +57 -0
- package/node_modules/fast-stable-stringify/results/escape-long/Safari 10.0.1 (Mac OS X 10.12.1).json +57 -0
- package/node_modules/fast-stable-stringify/results/escape-short/Chrome 60.0.3112 (Windows 7 0.0.0).json +57 -0
- package/node_modules/fast-stable-stringify/results/escape-short/Chrome Mobile 55.0.2883 (Android 6.0.0).json +57 -0
- package/node_modules/fast-stable-stringify/results/escape-short/Edge 14.14393.0 (Windows 10 0.0.0).json +57 -0
- package/node_modules/fast-stable-stringify/results/escape-short/Firefox 54.0.0 (Windows 7 0.0.0).json +57 -0
- package/node_modules/fast-stable-stringify/results/escape-short/IE 10.0.0 (Windows 7 0.0.0).json +57 -0
- package/node_modules/fast-stable-stringify/results/escape-short/IE 11.0.0 (Windows 7 0.0.0).json +57 -0
- package/node_modules/fast-stable-stringify/results/escape-short/IE 9.0.0 (Windows 7 0.0.0).json +57 -0
- package/node_modules/fast-stable-stringify/results/escape-short/Mobile Safari 10.0.0 (iOS 10.3.0).json +57 -0
- package/node_modules/fast-stable-stringify/results/escape-short/Safari 10.0.1 (Mac OS X 10.12.1).json +57 -0
- package/node_modules/fast-stable-stringify/results/escape.md +20 -0
- package/node_modules/fast-stable-stringify/results/itar-long/Chrome 60.0.3112 (Windows 7 0.0.0).json +35 -0
- package/node_modules/fast-stable-stringify/results/itar-long/Chrome Mobile 55.0.2883 (Android 6.0.0).json +35 -0
- package/node_modules/fast-stable-stringify/results/itar-long/Edge 14.14393.0 (Windows 10 0.0.0).json +35 -0
- package/node_modules/fast-stable-stringify/results/itar-long/Firefox 54.0.0 (Windows 7 0.0.0).json +35 -0
- package/node_modules/fast-stable-stringify/results/itar-long/IE 10.0.0 (Windows 7 0.0.0).json +35 -0
- package/node_modules/fast-stable-stringify/results/itar-long/IE 11.0.0 (Windows 7 0.0.0).json +35 -0
- package/node_modules/fast-stable-stringify/results/itar-long/IE 9.0.0 (Windows 7 0.0.0).json +35 -0
- package/node_modules/fast-stable-stringify/results/itar-long/Mobile Safari 10.0.0 (iOS 10.3.0).json +35 -0
- package/node_modules/fast-stable-stringify/results/itar-long/Safari 10.0.1 (Mac OS X 10.12.1).json +35 -0
- package/node_modules/fast-stable-stringify/results/itar-short/Chrome 60.0.3112 (Windows 7 0.0.0).json +35 -0
- package/node_modules/fast-stable-stringify/results/itar-short/Chrome Mobile 55.0.2883 (Android 6.0.0).json +35 -0
- package/node_modules/fast-stable-stringify/results/itar-short/Edge 14.14393.0 (Windows 10 0.0.0).json +35 -0
- package/node_modules/fast-stable-stringify/results/itar-short/Firefox 54.0.0 (Windows 7 0.0.0).json +35 -0
- package/node_modules/fast-stable-stringify/results/itar-short/IE 10.0.0 (Windows 7 0.0.0).json +35 -0
- package/node_modules/fast-stable-stringify/results/itar-short/IE 11.0.0 (Windows 7 0.0.0).json +35 -0
- package/node_modules/fast-stable-stringify/results/itar-short/IE 9.0.0 (Windows 7 0.0.0).json +35 -0
- package/node_modules/fast-stable-stringify/results/itar-short/Mobile Safari 10.0.0 (iOS 10.3.0).json +35 -0
- package/node_modules/fast-stable-stringify/results/itar-short/Safari 10.0.1 (Mac OS X 10.12.1).json +35 -0
- package/node_modules/fast-stable-stringify/results/itar.md +20 -0
- package/node_modules/fast-stable-stringify/results/iter/Chrome 60.0.3112 (Windows 7 0.0.0).json +35 -0
- package/node_modules/fast-stable-stringify/results/iter/Chrome Mobile 39.0.0 (Android 5.1.1).json +35 -0
- package/node_modules/fast-stable-stringify/results/iter/Chrome Mobile 55.0.2883 (Android 6.0.0).json +35 -0
- package/node_modules/fast-stable-stringify/results/iter/Edge 14.14393.0 (Windows 10 0.0.0).json +35 -0
- package/node_modules/fast-stable-stringify/results/iter/Firefox 54.0.0 (Windows 7 0.0.0).json +35 -0
- package/node_modules/fast-stable-stringify/results/iter/IE 10.0.0 (Windows 7 0.0.0).json +35 -0
- package/node_modules/fast-stable-stringify/results/iter/IE 11.0.0 (Windows 7 0.0.0).json +35 -0
- package/node_modules/fast-stable-stringify/results/iter/IE 9.0.0 (Windows 7 0.0.0).json +35 -0
- package/node_modules/fast-stable-stringify/results/iter/Mobile Safari 10.0.0 (iOS 10.3.0).json +35 -0
- package/node_modules/fast-stable-stringify/results/iter/Mobile Safari 9.0.0 (iOS 9.2.0).json +35 -0
- package/node_modules/fast-stable-stringify/results/iter/Safari 10.0.1 (Mac OS X 10.12.1).json +35 -0
- package/node_modules/fast-stable-stringify/results/iter/Safari 9.1.2 (Mac OS X 10.11.6).json +35 -0
- package/node_modules/fast-stable-stringify/results/iter.md +14 -0
- package/node_modules/fast-stable-stringify/results/libs/Chrome 60.0.3112 (Windows 7 0.0.0).json +46 -0
- package/node_modules/fast-stable-stringify/results/libs/Chrome Mobile 55.0.2883 (Android 6.0.0).json +46 -0
- package/node_modules/fast-stable-stringify/results/libs/Edge 14.14393.0 (Windows 10 0.0.0).json +46 -0
- package/node_modules/fast-stable-stringify/results/libs/Firefox 54.0.0 (Windows 7 0.0.0).json +46 -0
- package/node_modules/fast-stable-stringify/results/libs/IE 10.0.0 (Windows 7 0.0.0).json +35 -0
- package/node_modules/fast-stable-stringify/results/libs/IE 11.0.0 (Windows 7 0.0.0).json +35 -0
- package/node_modules/fast-stable-stringify/results/libs/IE 9.0.0 (Windows 7 0.0.0).json +35 -0
- package/node_modules/fast-stable-stringify/results/libs/Mobile Safari 10.0.0 (iOS 10.3.0).json +46 -0
- package/node_modules/fast-stable-stringify/results/libs/Safari 10.0.1 (Mac OS X 10.12.1).json +46 -0
- package/node_modules/fast-stable-stringify/results/libs.md +15 -0
- package/node_modules/fast-stable-stringify/test/escape-long.js +147 -0
- package/node_modules/fast-stable-stringify/test/escape-short.js +147 -0
- package/node_modules/fast-stable-stringify/test/index.js +6 -0
- package/node_modules/fast-stable-stringify/test/itar-long.js +52 -0
- package/node_modules/fast-stable-stringify/test/itar-short.js +52 -0
- package/node_modules/fast-stable-stringify/test/iter.js +84 -0
- package/node_modules/fast-stable-stringify/test/libs.js +57 -0
- package/node_modules/fast-stable-stringify/test/travis.js +43 -0
- package/node_modules/fast-stable-stringify/test/validate.js +24 -0
- package/node_modules/fast-stable-stringify/util/eachRecursive.js +9 -0
- package/node_modules/fast-stable-stringify/util/get-git-hash-sync.js +21 -0
- package/node_modules/fast-stable-stringify/util/get-lib-info.js +22 -0
- package/node_modules/fast-stable-stringify/util/object-path.js +47 -0
- package/node_modules/fast-stable-stringify/v8-profile/bench.js +8 -0
- package/node_modules/fast-stable-stringify/v8-profile/run.sh +2 -0
- package/node_modules/fast-stable-stringify/zuul-local.sh +2 -0
- package/node_modules/fill-range/LICENSE +21 -0
- package/node_modules/fill-range/README.md +237 -0
- package/node_modules/fill-range/index.js +249 -0
- package/node_modules/fill-range/package.json +117 -0
- package/node_modules/follow-redirects/LICENSE +18 -0
- package/node_modules/follow-redirects/README.md +155 -0
- package/node_modules/follow-redirects/debug.js +15 -0
- package/node_modules/follow-redirects/http.js +1 -0
- package/node_modules/follow-redirects/https.js +1 -0
- package/node_modules/follow-redirects/index.js +598 -0
- package/node_modules/follow-redirects/package.json +98 -0
- package/node_modules/form-data/License +19 -0
- package/node_modules/form-data/README.md.bak +358 -0
- package/node_modules/form-data/Readme.md +358 -0
- package/node_modules/form-data/index.d.ts +62 -0
- package/node_modules/form-data/lib/browser.js +2 -0
- package/node_modules/form-data/lib/form_data.js +501 -0
- package/node_modules/form-data/lib/populate.js +10 -0
- package/node_modules/form-data/package.json +104 -0
- package/node_modules/formidable/LICENSE +7 -0
- package/node_modules/formidable/Readme.md +448 -0
- package/node_modules/formidable/lib/file.js +81 -0
- package/node_modules/formidable/lib/incoming_form.js +564 -0
- package/node_modules/formidable/lib/index.js +3 -0
- package/node_modules/formidable/lib/json_parser.js +30 -0
- package/node_modules/formidable/lib/multipart_parser.js +332 -0
- package/node_modules/formidable/lib/octet_parser.js +20 -0
- package/node_modules/formidable/lib/querystring_parser.js +27 -0
- package/node_modules/formidable/package.json +63 -0
- package/node_modules/fs-minipass/LICENSE +15 -0
- package/node_modules/fs-minipass/README.md +70 -0
- package/node_modules/fs-minipass/index.js +422 -0
- package/node_modules/fs-minipass/package.json +71 -0
- package/node_modules/fs-readdir-recursive/LICENSE +22 -0
- package/node_modules/fs-readdir-recursive/README.md +61 -0
- package/node_modules/fs-readdir-recursive/index.js +29 -0
- package/node_modules/fs-readdir-recursive/package.json +60 -0
- package/node_modules/fs.realpath/LICENSE +43 -0
- package/node_modules/fs.realpath/README.md +33 -0
- package/node_modules/fs.realpath/index.js +66 -0
- package/node_modules/fs.realpath/old.js +303 -0
- package/node_modules/fs.realpath/package.json +62 -0
- package/node_modules/fsevents/LICENSE +22 -0
- package/node_modules/fsevents/README.md +83 -0
- package/node_modules/fsevents/fsevents.d.ts +46 -0
- package/node_modules/fsevents/fsevents.js +82 -0
- package/node_modules/fsevents/fsevents.node +0 -0
- package/node_modules/fsevents/package.json +91 -0
- package/node_modules/ftp-response-parser/.README.md.un~ +0 -0
- package/node_modules/ftp-response-parser/.index.js.un~ +0 -0
- package/node_modules/ftp-response-parser/.package.json.un~ +0 -0
- package/node_modules/ftp-response-parser/.test.js.un~ +0 -0
- package/node_modules/ftp-response-parser/LICENSE +20 -0
- package/node_modules/ftp-response-parser/README.md +104 -0
- package/node_modules/ftp-response-parser/index.js +82 -0
- package/node_modules/ftp-response-parser/node_modules/isarray/README.md +54 -0
- package/node_modules/ftp-response-parser/node_modules/isarray/build/build.js +209 -0
- package/node_modules/ftp-response-parser/node_modules/isarray/component.json +19 -0
- package/node_modules/ftp-response-parser/node_modules/isarray/index.js +3 -0
- package/node_modules/ftp-response-parser/node_modules/isarray/package.json +61 -0
- package/node_modules/ftp-response-parser/node_modules/readable-stream/.npmignore +5 -0
- package/node_modules/ftp-response-parser/node_modules/readable-stream/LICENSE +18 -0
- package/node_modules/ftp-response-parser/node_modules/readable-stream/README.md +15 -0
- package/node_modules/ftp-response-parser/node_modules/readable-stream/duplex.js +1 -0
- package/node_modules/ftp-response-parser/node_modules/readable-stream/float.patch +923 -0
- package/node_modules/ftp-response-parser/node_modules/readable-stream/lib/_stream_duplex.js +89 -0
- package/node_modules/ftp-response-parser/node_modules/readable-stream/lib/_stream_passthrough.js +46 -0
- package/node_modules/ftp-response-parser/node_modules/readable-stream/lib/_stream_readable.js +951 -0
- package/node_modules/ftp-response-parser/node_modules/readable-stream/lib/_stream_transform.js +209 -0
- package/node_modules/ftp-response-parser/node_modules/readable-stream/lib/_stream_writable.js +477 -0
- package/node_modules/ftp-response-parser/node_modules/readable-stream/package.json +69 -0
- package/node_modules/ftp-response-parser/node_modules/readable-stream/passthrough.js +1 -0
- package/node_modules/ftp-response-parser/node_modules/readable-stream/readable.js +10 -0
- package/node_modules/ftp-response-parser/node_modules/readable-stream/transform.js +1 -0
- package/node_modules/ftp-response-parser/node_modules/readable-stream/writable.js +1 -0
- package/node_modules/ftp-response-parser/node_modules/string_decoder/.npmignore +2 -0
- package/node_modules/ftp-response-parser/node_modules/string_decoder/LICENSE +20 -0
- package/node_modules/ftp-response-parser/node_modules/string_decoder/README.md +7 -0
- package/node_modules/ftp-response-parser/node_modules/string_decoder/index.js +221 -0
- package/node_modules/ftp-response-parser/node_modules/string_decoder/package.json +57 -0
- package/node_modules/ftp-response-parser/package.json +80 -0
- package/node_modules/ftp-response-parser/test.js +149 -0
- package/node_modules/function-bind/.editorconfig +20 -0
- package/node_modules/function-bind/.eslintrc +15 -0
- package/node_modules/function-bind/.jscs.json +176 -0
- package/node_modules/function-bind/.npmignore +22 -0
- package/node_modules/function-bind/.travis.yml +168 -0
- package/node_modules/function-bind/LICENSE +20 -0
- package/node_modules/function-bind/README.md +48 -0
- package/node_modules/function-bind/implementation.js +52 -0
- package/node_modules/function-bind/index.js +5 -0
- package/node_modules/function-bind/package.json +100 -0
- package/node_modules/function-bind/test/.eslintrc +9 -0
- package/node_modules/function-bind/test/index.js +252 -0
- package/node_modules/gauge/CHANGELOG.md +163 -0
- package/node_modules/gauge/LICENSE +13 -0
- package/node_modules/gauge/README.md +402 -0
- package/node_modules/gauge/base-theme.js +14 -0
- package/node_modules/gauge/error.js +24 -0
- package/node_modules/gauge/has-color.js +4 -0
- package/node_modules/gauge/index.js +233 -0
- package/node_modules/gauge/package.json +97 -0
- package/node_modules/gauge/plumbing.js +48 -0
- package/node_modules/gauge/process.js +3 -0
- package/node_modules/gauge/progress-bar.js +35 -0
- package/node_modules/gauge/render-template.js +178 -0
- package/node_modules/gauge/set-immediate.js +7 -0
- package/node_modules/gauge/set-interval.js +3 -0
- package/node_modules/gauge/spin.js +5 -0
- package/node_modules/gauge/template-item.js +72 -0
- package/node_modules/gauge/theme-set.js +114 -0
- package/node_modules/gauge/themes.js +56 -0
- package/node_modules/gauge/wide-truncate.js +25 -0
- package/node_modules/generate-password/.eslintrc.yml +18 -0
- package/node_modules/generate-password/.github/workflows/nodejs.yml +33 -0
- package/node_modules/generate-password/CHANGELOG.md +79 -0
- package/node_modules/generate-password/LICENSE +21 -0
- package/node_modules/generate-password/README.md +61 -0
- package/node_modules/generate-password/example.js +28 -0
- package/node_modules/generate-password/main.js +1 -0
- package/node_modules/generate-password/package.json +68 -0
- package/node_modules/generate-password/src/generate.d.ts +51 -0
- package/node_modules/generate-password/src/generate.js +152 -0
- package/node_modules/generate-password/test/coverage.sh +17 -0
- package/node_modules/generate-password/test/esm.mjs +13 -0
- package/node_modules/generate-password/test/generator.js +164 -0
- package/node_modules/get-caller-file/LICENSE.md +6 -0
- package/node_modules/get-caller-file/README.md +41 -0
- package/node_modules/get-caller-file/index.d.ts +2 -0
- package/node_modules/get-caller-file/index.js +22 -0
- package/node_modules/get-caller-file/index.js.map +1 -0
- package/node_modules/get-caller-file/package.json +72 -0
- package/node_modules/get-intrinsic/.eslintrc +37 -0
- package/node_modules/get-intrinsic/.github/FUNDING.yml +12 -0
- package/node_modules/get-intrinsic/.nycrc +9 -0
- package/node_modules/get-intrinsic/CHANGELOG.md +91 -0
- package/node_modules/get-intrinsic/LICENSE +21 -0
- package/node_modules/get-intrinsic/README.md +71 -0
- package/node_modules/get-intrinsic/index.js +334 -0
- package/node_modules/get-intrinsic/package.json +125 -0
- package/node_modules/get-intrinsic/test/GetIntrinsic.js +274 -0
- package/node_modules/glob/LICENSE +21 -0
- package/node_modules/glob/README.md +378 -0
- package/node_modules/glob/common.js +238 -0
- package/node_modules/glob/glob.js +790 -0
- package/node_modules/glob/package.json +93 -0
- package/node_modules/glob/sync.js +486 -0
- package/node_modules/glob-parent/CHANGELOG.md +110 -0
- package/node_modules/glob-parent/LICENSE +15 -0
- package/node_modules/glob-parent/README.md +137 -0
- package/node_modules/glob-parent/index.js +42 -0
- package/node_modules/glob-parent/package.json +95 -0
- package/node_modules/has/LICENSE-MIT +22 -0
- package/node_modules/has/README.md +18 -0
- package/node_modules/has/package.json +81 -0
- package/node_modules/has/src/index.js +5 -0
- package/node_modules/has/test/index.js +10 -0
- package/node_modules/has-symbols/.eslintrc +11 -0
- package/node_modules/has-symbols/.github/FUNDING.yml +12 -0
- package/node_modules/has-symbols/.nycrc +9 -0
- package/node_modules/has-symbols/CHANGELOG.md +75 -0
- package/node_modules/has-symbols/LICENSE +21 -0
- package/node_modules/has-symbols/README.md +46 -0
- package/node_modules/has-symbols/index.js +13 -0
- package/node_modules/has-symbols/package.json +134 -0
- package/node_modules/has-symbols/shams.js +42 -0
- package/node_modules/has-symbols/test/index.js +22 -0
- package/node_modules/has-symbols/test/shams/core-js.js +28 -0
- package/node_modules/has-symbols/test/shams/get-own-property-symbols.js +28 -0
- package/node_modules/has-symbols/test/tests.js +56 -0
- package/node_modules/has-unicode/LICENSE +14 -0
- package/node_modules/has-unicode/README.md +43 -0
- package/node_modules/has-unicode/index.js +16 -0
- package/node_modules/has-unicode/package.json +61 -0
- package/node_modules/hkdf/.npmignore +2 -0
- package/node_modules/hkdf/README.md +23 -0
- package/node_modules/hkdf/hkdf.py +171 -0
- package/node_modules/hkdf/hkdf.pyc +0 -0
- package/node_modules/hkdf/index.js +1 -0
- package/node_modules/hkdf/lib/hkdf.js +55 -0
- package/node_modules/hkdf/package.json +55 -0
- package/node_modules/hkdf/scripts/run_all_tests.sh +19 -0
- package/node_modules/hkdf/test/all-test.js +79 -0
- package/node_modules/hkdf/test.py +11 -0
- package/node_modules/https-proxy-agent/README.md +137 -0
- package/node_modules/https-proxy-agent/dist/agent.d.ts +30 -0
- package/node_modules/https-proxy-agent/dist/agent.js +177 -0
- package/node_modules/https-proxy-agent/dist/agent.js.map +1 -0
- package/node_modules/https-proxy-agent/dist/index.d.ts +23 -0
- package/node_modules/https-proxy-agent/dist/index.js +14 -0
- package/node_modules/https-proxy-agent/dist/index.js.map +1 -0
- package/node_modules/https-proxy-agent/dist/parse-proxy-response.d.ts +7 -0
- package/node_modules/https-proxy-agent/dist/parse-proxy-response.js +66 -0
- package/node_modules/https-proxy-agent/dist/parse-proxy-response.js.map +1 -0
- package/node_modules/https-proxy-agent/package.json +89 -0
- package/node_modules/iconv-lite/Changelog.md +162 -0
- package/node_modules/iconv-lite/LICENSE +21 -0
- package/node_modules/iconv-lite/README.md +156 -0
- package/node_modules/iconv-lite/encodings/dbcs-codec.js +555 -0
- package/node_modules/iconv-lite/encodings/dbcs-data.js +176 -0
- package/node_modules/iconv-lite/encodings/index.js +22 -0
- package/node_modules/iconv-lite/encodings/internal.js +188 -0
- package/node_modules/iconv-lite/encodings/sbcs-codec.js +72 -0
- package/node_modules/iconv-lite/encodings/sbcs-data-generated.js +451 -0
- package/node_modules/iconv-lite/encodings/sbcs-data.js +174 -0
- package/node_modules/iconv-lite/encodings/tables/big5-added.json +122 -0
- package/node_modules/iconv-lite/encodings/tables/cp936.json +264 -0
- package/node_modules/iconv-lite/encodings/tables/cp949.json +273 -0
- package/node_modules/iconv-lite/encodings/tables/cp950.json +177 -0
- package/node_modules/iconv-lite/encodings/tables/eucjp.json +182 -0
- package/node_modules/iconv-lite/encodings/tables/gb18030-ranges.json +1 -0
- package/node_modules/iconv-lite/encodings/tables/gbk-added.json +55 -0
- package/node_modules/iconv-lite/encodings/tables/shiftjis.json +125 -0
- package/node_modules/iconv-lite/encodings/utf16.js +177 -0
- package/node_modules/iconv-lite/encodings/utf7.js +290 -0
- package/node_modules/iconv-lite/lib/bom-handling.js +52 -0
- package/node_modules/iconv-lite/lib/extend-node.js +217 -0
- package/node_modules/iconv-lite/lib/index.d.ts +24 -0
- package/node_modules/iconv-lite/lib/index.js +153 -0
- package/node_modules/iconv-lite/lib/streams.js +121 -0
- package/node_modules/iconv-lite/package.json +79 -0
- package/node_modules/immediate/LICENSE.txt +20 -0
- package/node_modules/immediate/README.md +93 -0
- package/node_modules/immediate/dist/immediate.js +75 -0
- package/node_modules/immediate/dist/immediate.min.js +1 -0
- package/node_modules/immediate/lib/browser.js +69 -0
- package/node_modules/immediate/lib/index.js +73 -0
- package/node_modules/immediate/package.json +86 -0
- package/node_modules/inflight/LICENSE +15 -0
- package/node_modules/inflight/README.md +37 -0
- package/node_modules/inflight/inflight.js +54 -0
- package/node_modules/inflight/package.json +61 -0
- package/node_modules/inherits/LICENSE +16 -0
- package/node_modules/inherits/README.md +42 -0
- package/node_modules/inherits/inherits.js +9 -0
- package/node_modules/inherits/inherits_browser.js +27 -0
- package/node_modules/inherits/package.json +70 -0
- package/node_modules/is-binary-path/index.d.ts +17 -0
- package/node_modules/is-binary-path/index.js +7 -0
- package/node_modules/is-binary-path/license +9 -0
- package/node_modules/is-binary-path/package.json +76 -0
- package/node_modules/is-binary-path/readme.md +34 -0
- package/node_modules/is-extglob/LICENSE +21 -0
- package/node_modules/is-extglob/README.md +107 -0
- package/node_modules/is-extglob/index.js +20 -0
- package/node_modules/is-extglob/package.json +103 -0
- package/node_modules/is-fullwidth-code-point/index.d.ts +17 -0
- package/node_modules/is-fullwidth-code-point/index.js +50 -0
- package/node_modules/is-fullwidth-code-point/license +9 -0
- package/node_modules/is-fullwidth-code-point/package.json +80 -0
- package/node_modules/is-fullwidth-code-point/readme.md +39 -0
- package/node_modules/is-glob/LICENSE +21 -0
- package/node_modules/is-glob/README.md +206 -0
- package/node_modules/is-glob/index.js +150 -0
- package/node_modules/is-glob/package.json +127 -0
- package/node_modules/is-number/LICENSE +21 -0
- package/node_modules/is-number/README.md +187 -0
- package/node_modules/is-number/index.js +18 -0
- package/node_modules/is-number/package.json +125 -0
- package/node_modules/isarray/.npmignore +1 -0
- package/node_modules/isarray/.travis.yml +4 -0
- package/node_modules/isarray/Makefile +6 -0
- package/node_modules/isarray/README.md +60 -0
- package/node_modules/isarray/component.json +19 -0
- package/node_modules/isarray/index.js +5 -0
- package/node_modules/isarray/package.json +77 -0
- package/node_modules/isarray/test.js +20 -0
- package/node_modules/jsftp/LICENSE +22 -0
- package/node_modules/jsftp/README.md +329 -0
- package/node_modules/jsftp/index.js +1 -0
- package/node_modules/jsftp/lib/jsftp.js +772 -0
- package/node_modules/jsftp/node_modules/debug/CHANGELOG.md +395 -0
- package/node_modules/jsftp/node_modules/debug/LICENSE +19 -0
- package/node_modules/jsftp/node_modules/debug/README.md +437 -0
- package/node_modules/jsftp/node_modules/debug/node.js +1 -0
- package/node_modules/jsftp/node_modules/debug/package.json +94 -0
- package/node_modules/jsftp/node_modules/debug/src/browser.js +180 -0
- package/node_modules/jsftp/node_modules/debug/src/common.js +249 -0
- package/node_modules/jsftp/node_modules/debug/src/index.js +12 -0
- package/node_modules/jsftp/node_modules/debug/src/node.js +177 -0
- package/node_modules/jsftp/package.json +84 -0
- package/node_modules/json2csv/.eslintrc +7 -0
- package/node_modules/json2csv/.gitattributes +3 -0
- package/node_modules/json2csv/CHANGELOG.md +522 -0
- package/node_modules/json2csv/LICENSE.md +14 -0
- package/node_modules/json2csv/README.md +852 -0
- package/node_modules/json2csv/bin/json2csv.js +239 -0
- package/node_modules/json2csv/bin/utils/TablePrinter.js +96 -0
- package/node_modules/json2csv/bin/utils/parseNdjson.js +11 -0
- package/node_modules/json2csv/dist/json2csv.cjs.js +2286 -0
- package/node_modules/json2csv/dist/json2csv.esm.js +2276 -0
- package/node_modules/json2csv/dist/json2csv.umd.js +7440 -0
- package/node_modules/json2csv/lib/JSON2CSVAsyncParser.js +53 -0
- package/node_modules/json2csv/lib/JSON2CSVBase.js +291 -0
- package/node_modules/json2csv/lib/JSON2CSVParser.js +83 -0
- package/node_modules/json2csv/lib/JSON2CSVTransform.js +204 -0
- package/node_modules/json2csv/lib/json2csv.js +37 -0
- package/node_modules/json2csv/lib/utils.js +46 -0
- package/node_modules/json2csv/node_modules/commander/CHANGELOG.md +419 -0
- package/node_modules/json2csv/node_modules/commander/LICENSE +22 -0
- package/node_modules/json2csv/node_modules/commander/Readme.md +428 -0
- package/node_modules/json2csv/node_modules/commander/index.js +1224 -0
- package/node_modules/json2csv/node_modules/commander/package.json +73 -0
- package/node_modules/json2csv/node_modules/commander/typings/index.d.ts +310 -0
- package/node_modules/json2csv/package.json +96 -0
- package/node_modules/json2csv/rollup.config.js +47 -0
- package/node_modules/jsonparse/.npmignore +1 -0
- package/node_modules/jsonparse/LICENSE +24 -0
- package/node_modules/jsonparse/README.markdown +11 -0
- package/node_modules/jsonparse/bench.js +26 -0
- package/node_modules/jsonparse/examples/twitterfeed.js +30 -0
- package/node_modules/jsonparse/jsonparse.js +413 -0
- package/node_modules/jsonparse/package.json +61 -0
- package/node_modules/jsonparse/samplejson/basic.json +167 -0
- package/node_modules/jsonparse/samplejson/basic2.json +180 -0
- package/node_modules/jsonparse/test/big-token.js +24 -0
- package/node_modules/jsonparse/test/boundary.js +110 -0
- package/node_modules/jsonparse/test/offset.js +67 -0
- package/node_modules/jsonparse/test/primitives.js +57 -0
- package/node_modules/jsonparse/test/surrogate.js +26 -0
- package/node_modules/jsonparse/test/unvalid.js +15 -0
- package/node_modules/jsonparse/test/utf8.js +38 -0
- package/node_modules/jszip/.codeclimate.yml +16 -0
- package/node_modules/jszip/.editorconfig +8 -0
- package/node_modules/jszip/.github/workflows/pr.yaml +41 -0
- package/node_modules/jszip/.jshintignore +1 -0
- package/node_modules/jszip/.jshintrc +21 -0
- package/node_modules/jszip/.travis.yml +17 -0
- package/node_modules/jszip/CHANGES.md +192 -0
- package/node_modules/jszip/LICENSE.markdown +651 -0
- package/node_modules/jszip/README.markdown +33 -0
- package/node_modules/jszip/dist/jszip.js +11583 -0
- package/node_modules/jszip/dist/jszip.min.js +13 -0
- package/node_modules/jszip/index.d.ts +335 -0
- package/node_modules/jszip/lib/base64.js +106 -0
- package/node_modules/jszip/lib/compressedObject.js +74 -0
- package/node_modules/jszip/lib/compressions.js +14 -0
- package/node_modules/jszip/lib/crc32.js +77 -0
- package/node_modules/jszip/lib/defaults.js +11 -0
- package/node_modules/jszip/lib/external.js +19 -0
- package/node_modules/jszip/lib/flate.js +85 -0
- package/node_modules/jszip/lib/generate/ZipFileWorker.js +540 -0
- package/node_modules/jszip/lib/generate/index.js +57 -0
- package/node_modules/jszip/lib/index.js +55 -0
- package/node_modules/jszip/lib/license_header.js +11 -0
- package/node_modules/jszip/lib/load.js +88 -0
- package/node_modules/jszip/lib/nodejs/NodejsStreamInputAdapter.js +74 -0
- package/node_modules/jszip/lib/nodejs/NodejsStreamOutputAdapter.js +42 -0
- package/node_modules/jszip/lib/nodejsUtils.js +57 -0
- package/node_modules/jszip/lib/object.js +389 -0
- package/node_modules/jszip/lib/readable-stream-browser.js +9 -0
- package/node_modules/jszip/lib/reader/ArrayReader.js +57 -0
- package/node_modules/jszip/lib/reader/DataReader.js +116 -0
- package/node_modules/jszip/lib/reader/NodeBufferReader.js +19 -0
- package/node_modules/jszip/lib/reader/StringReader.js +38 -0
- package/node_modules/jszip/lib/reader/Uint8ArrayReader.js +22 -0
- package/node_modules/jszip/lib/reader/readerFor.js +28 -0
- package/node_modules/jszip/lib/signature.js +7 -0
- package/node_modules/jszip/lib/stream/ConvertWorker.js +26 -0
- package/node_modules/jszip/lib/stream/Crc32Probe.js +24 -0
- package/node_modules/jszip/lib/stream/DataLengthProbe.js +29 -0
- package/node_modules/jszip/lib/stream/DataWorker.js +116 -0
- package/node_modules/jszip/lib/stream/GenericWorker.js +263 -0
- package/node_modules/jszip/lib/stream/StreamHelper.js +212 -0
- package/node_modules/jszip/lib/support.js +38 -0
- package/node_modules/jszip/lib/utf8.js +275 -0
- package/node_modules/jszip/lib/utils.js +501 -0
- package/node_modules/jszip/lib/zipEntries.js +262 -0
- package/node_modules/jszip/lib/zipEntry.js +294 -0
- package/node_modules/jszip/lib/zipObject.js +133 -0
- package/node_modules/jszip/package.json +99 -0
- package/node_modules/jszip/tsconfig.json +101 -0
- package/node_modules/jszip/vendor/FileSaver.js +247 -0
- package/node_modules/lie/README.md +62 -0
- package/node_modules/lie/dist/lie.js +350 -0
- package/node_modules/lie/dist/lie.min.js +1 -0
- package/node_modules/lie/dist/lie.polyfill.js +358 -0
- package/node_modules/lie/dist/lie.polyfill.min.js +1 -0
- package/node_modules/lie/lib/browser.js +273 -0
- package/node_modules/lie/lib/index.js +298 -0
- package/node_modules/lie/license.md +7 -0
- package/node_modules/lie/lie.d.ts +244 -0
- package/node_modules/lie/package.json +98 -0
- package/node_modules/lie/polyfill.js +4 -0
- package/node_modules/lodash/LICENSE +47 -0
- package/node_modules/lodash/README.md +39 -0
- package/node_modules/lodash/_DataView.js +7 -0
- package/node_modules/lodash/_Hash.js +32 -0
- package/node_modules/lodash/_LazyWrapper.js +28 -0
- package/node_modules/lodash/_ListCache.js +32 -0
- package/node_modules/lodash/_LodashWrapper.js +22 -0
- package/node_modules/lodash/_Map.js +7 -0
- package/node_modules/lodash/_MapCache.js +32 -0
- package/node_modules/lodash/_Promise.js +7 -0
- package/node_modules/lodash/_Set.js +7 -0
- package/node_modules/lodash/_SetCache.js +27 -0
- package/node_modules/lodash/_Stack.js +27 -0
- package/node_modules/lodash/_Symbol.js +6 -0
- package/node_modules/lodash/_Uint8Array.js +6 -0
- package/node_modules/lodash/_WeakMap.js +7 -0
- package/node_modules/lodash/_apply.js +21 -0
- package/node_modules/lodash/_arrayAggregator.js +22 -0
- package/node_modules/lodash/_arrayEach.js +22 -0
- package/node_modules/lodash/_arrayEachRight.js +21 -0
- package/node_modules/lodash/_arrayEvery.js +23 -0
- package/node_modules/lodash/_arrayFilter.js +25 -0
- package/node_modules/lodash/_arrayIncludes.js +17 -0
- package/node_modules/lodash/_arrayIncludesWith.js +22 -0
- package/node_modules/lodash/_arrayLikeKeys.js +49 -0
- package/node_modules/lodash/_arrayMap.js +21 -0
- package/node_modules/lodash/_arrayPush.js +20 -0
- package/node_modules/lodash/_arrayReduce.js +26 -0
- package/node_modules/lodash/_arrayReduceRight.js +24 -0
- package/node_modules/lodash/_arraySample.js +15 -0
- package/node_modules/lodash/_arraySampleSize.js +17 -0
- package/node_modules/lodash/_arrayShuffle.js +15 -0
- package/node_modules/lodash/_arraySome.js +23 -0
- package/node_modules/lodash/_asciiSize.js +12 -0
- package/node_modules/lodash/_asciiToArray.js +12 -0
- package/node_modules/lodash/_asciiWords.js +15 -0
- package/node_modules/lodash/_assignMergeValue.js +20 -0
- package/node_modules/lodash/_assignValue.js +28 -0
- package/node_modules/lodash/_assocIndexOf.js +21 -0
- package/node_modules/lodash/_baseAggregator.js +21 -0
- package/node_modules/lodash/_baseAssign.js +17 -0
- package/node_modules/lodash/_baseAssignIn.js +17 -0
- package/node_modules/lodash/_baseAssignValue.js +25 -0
- package/node_modules/lodash/_baseAt.js +23 -0
- package/node_modules/lodash/_baseClamp.js +22 -0
- package/node_modules/lodash/_baseClone.js +166 -0
- package/node_modules/lodash/_baseConforms.js +18 -0
- package/node_modules/lodash/_baseConformsTo.js +27 -0
- package/node_modules/lodash/_baseCreate.js +30 -0
- package/node_modules/lodash/_baseDelay.js +21 -0
- package/node_modules/lodash/_baseDifference.js +67 -0
- package/node_modules/lodash/_baseEach.js +14 -0
- package/node_modules/lodash/_baseEachRight.js +14 -0
- package/node_modules/lodash/_baseEvery.js +21 -0
- package/node_modules/lodash/_baseExtremum.js +32 -0
- package/node_modules/lodash/_baseFill.js +32 -0
- package/node_modules/lodash/_baseFilter.js +21 -0
- package/node_modules/lodash/_baseFindIndex.js +24 -0
- package/node_modules/lodash/_baseFindKey.js +23 -0
- package/node_modules/lodash/_baseFlatten.js +38 -0
- package/node_modules/lodash/_baseFor.js +16 -0
- package/node_modules/lodash/_baseForOwn.js +16 -0
- package/node_modules/lodash/_baseForOwnRight.js +16 -0
- package/node_modules/lodash/_baseForRight.js +15 -0
- package/node_modules/lodash/_baseFunctions.js +19 -0
- package/node_modules/lodash/_baseGet.js +24 -0
- package/node_modules/lodash/_baseGetAllKeys.js +20 -0
- package/node_modules/lodash/_baseGetTag.js +28 -0
- package/node_modules/lodash/_baseGt.js +14 -0
- package/node_modules/lodash/_baseHas.js +19 -0
- package/node_modules/lodash/_baseHasIn.js +13 -0
- package/node_modules/lodash/_baseInRange.js +18 -0
- package/node_modules/lodash/_baseIndexOf.js +20 -0
- package/node_modules/lodash/_baseIndexOfWith.js +23 -0
- package/node_modules/lodash/_baseIntersection.js +74 -0
- package/node_modules/lodash/_baseInverter.js +21 -0
- package/node_modules/lodash/_baseInvoke.js +24 -0
- package/node_modules/lodash/_baseIsArguments.js +18 -0
- package/node_modules/lodash/_baseIsArrayBuffer.js +17 -0
- package/node_modules/lodash/_baseIsDate.js +18 -0
- package/node_modules/lodash/_baseIsEqual.js +28 -0
- package/node_modules/lodash/_baseIsEqualDeep.js +83 -0
- package/node_modules/lodash/_baseIsMap.js +18 -0
- package/node_modules/lodash/_baseIsMatch.js +62 -0
- package/node_modules/lodash/_baseIsNaN.js +12 -0
- package/node_modules/lodash/_baseIsNative.js +47 -0
- package/node_modules/lodash/_baseIsRegExp.js +18 -0
- package/node_modules/lodash/_baseIsSet.js +18 -0
- package/node_modules/lodash/_baseIsTypedArray.js +60 -0
- package/node_modules/lodash/_baseIteratee.js +31 -0
- package/node_modules/lodash/_baseKeys.js +30 -0
- package/node_modules/lodash/_baseKeysIn.js +33 -0
- package/node_modules/lodash/_baseLodash.js +10 -0
- package/node_modules/lodash/_baseLt.js +14 -0
- package/node_modules/lodash/_baseMap.js +22 -0
- package/node_modules/lodash/_baseMatches.js +22 -0
- package/node_modules/lodash/_baseMatchesProperty.js +33 -0
- package/node_modules/lodash/_baseMean.js +20 -0
- package/node_modules/lodash/_baseMerge.js +42 -0
- package/node_modules/lodash/_baseMergeDeep.js +94 -0
- package/node_modules/lodash/_baseNth.js +20 -0
- package/node_modules/lodash/_baseOrderBy.js +49 -0
- package/node_modules/lodash/_basePick.js +19 -0
- package/node_modules/lodash/_basePickBy.js +30 -0
- package/node_modules/lodash/_baseProperty.js +14 -0
- package/node_modules/lodash/_basePropertyDeep.js +16 -0
- package/node_modules/lodash/_basePropertyOf.js +14 -0
- package/node_modules/lodash/_basePullAll.js +51 -0
- package/node_modules/lodash/_basePullAt.js +37 -0
- package/node_modules/lodash/_baseRandom.js +18 -0
- package/node_modules/lodash/_baseRange.js +28 -0
- package/node_modules/lodash/_baseReduce.js +23 -0
- package/node_modules/lodash/_baseRepeat.js +35 -0
- package/node_modules/lodash/_baseRest.js +17 -0
- package/node_modules/lodash/_baseSample.js +15 -0
- package/node_modules/lodash/_baseSampleSize.js +18 -0
- package/node_modules/lodash/_baseSet.js +51 -0
- package/node_modules/lodash/_baseSetData.js +17 -0
- package/node_modules/lodash/_baseSetToString.js +22 -0
- package/node_modules/lodash/_baseShuffle.js +15 -0
- package/node_modules/lodash/_baseSlice.js +31 -0
- package/node_modules/lodash/_baseSome.js +22 -0
- package/node_modules/lodash/_baseSortBy.js +21 -0
- package/node_modules/lodash/_baseSortedIndex.js +42 -0
- package/node_modules/lodash/_baseSortedIndexBy.js +67 -0
- package/node_modules/lodash/_baseSortedUniq.js +30 -0
- package/node_modules/lodash/_baseSum.js +24 -0
- package/node_modules/lodash/_baseTimes.js +20 -0
- package/node_modules/lodash/_baseToNumber.js +24 -0
- package/node_modules/lodash/_baseToPairs.js +18 -0
- package/node_modules/lodash/_baseToString.js +37 -0
- package/node_modules/lodash/_baseTrim.js +19 -0
- package/node_modules/lodash/_baseUnary.js +14 -0
- package/node_modules/lodash/_baseUniq.js +72 -0
- package/node_modules/lodash/_baseUnset.js +20 -0
- package/node_modules/lodash/_baseUpdate.js +18 -0
- package/node_modules/lodash/_baseValues.js +19 -0
- package/node_modules/lodash/_baseWhile.js +26 -0
- package/node_modules/lodash/_baseWrapperValue.js +25 -0
- package/node_modules/lodash/_baseXor.js +36 -0
- package/node_modules/lodash/_baseZipObject.js +23 -0
- package/node_modules/lodash/_cacheHas.js +13 -0
- package/node_modules/lodash/_castArrayLikeObject.js +14 -0
- package/node_modules/lodash/_castFunction.js +14 -0
- package/node_modules/lodash/_castPath.js +21 -0
- package/node_modules/lodash/_castRest.js +14 -0
- package/node_modules/lodash/_castSlice.js +18 -0
- package/node_modules/lodash/_charsEndIndex.js +19 -0
- package/node_modules/lodash/_charsStartIndex.js +20 -0
- package/node_modules/lodash/_cloneArrayBuffer.js +16 -0
- package/node_modules/lodash/_cloneBuffer.js +35 -0
- package/node_modules/lodash/_cloneDataView.js +16 -0
- package/node_modules/lodash/_cloneRegExp.js +17 -0
- package/node_modules/lodash/_cloneSymbol.js +18 -0
- package/node_modules/lodash/_cloneTypedArray.js +16 -0
- package/node_modules/lodash/_compareAscending.js +41 -0
- package/node_modules/lodash/_compareMultiple.js +44 -0
- package/node_modules/lodash/_composeArgs.js +39 -0
- package/node_modules/lodash/_composeArgsRight.js +41 -0
- package/node_modules/lodash/_copyArray.js +20 -0
- package/node_modules/lodash/_copyObject.js +40 -0
- package/node_modules/lodash/_copySymbols.js +16 -0
- package/node_modules/lodash/_copySymbolsIn.js +16 -0
- package/node_modules/lodash/_coreJsData.js +6 -0
- package/node_modules/lodash/_countHolders.js +21 -0
- package/node_modules/lodash/_createAggregator.js +23 -0
- package/node_modules/lodash/_createAssigner.js +37 -0
- package/node_modules/lodash/_createBaseEach.js +32 -0
- package/node_modules/lodash/_createBaseFor.js +25 -0
- package/node_modules/lodash/_createBind.js +28 -0
- package/node_modules/lodash/_createCaseFirst.js +33 -0
- package/node_modules/lodash/_createCompounder.js +24 -0
- package/node_modules/lodash/_createCtor.js +37 -0
- package/node_modules/lodash/_createCurry.js +46 -0
- package/node_modules/lodash/_createFind.js +25 -0
- package/node_modules/lodash/_createFlow.js +78 -0
- package/node_modules/lodash/_createHybrid.js +92 -0
- package/node_modules/lodash/_createInverter.js +17 -0
- package/node_modules/lodash/_createMathOperation.js +38 -0
- package/node_modules/lodash/_createOver.js +27 -0
- package/node_modules/lodash/_createPadding.js +33 -0
- package/node_modules/lodash/_createPartial.js +43 -0
- package/node_modules/lodash/_createRange.js +30 -0
- package/node_modules/lodash/_createRecurry.js +56 -0
- package/node_modules/lodash/_createRelationalOperation.js +20 -0
- package/node_modules/lodash/_createRound.js +35 -0
- package/node_modules/lodash/_createSet.js +19 -0
- package/node_modules/lodash/_createToPairs.js +30 -0
- package/node_modules/lodash/_createWrap.js +106 -0
- package/node_modules/lodash/_customDefaultsAssignIn.js +29 -0
- package/node_modules/lodash/_customDefaultsMerge.js +28 -0
- package/node_modules/lodash/_customOmitClone.js +16 -0
- package/node_modules/lodash/_deburrLetter.js +71 -0
- package/node_modules/lodash/_defineProperty.js +11 -0
- package/node_modules/lodash/_equalArrays.js +84 -0
- package/node_modules/lodash/_equalByTag.js +112 -0
- package/node_modules/lodash/_equalObjects.js +90 -0
- package/node_modules/lodash/_escapeHtmlChar.js +21 -0
- package/node_modules/lodash/_escapeStringChar.js +22 -0
- package/node_modules/lodash/_flatRest.js +16 -0
- package/node_modules/lodash/_freeGlobal.js +4 -0
- package/node_modules/lodash/_getAllKeys.js +16 -0
- package/node_modules/lodash/_getAllKeysIn.js +17 -0
- package/node_modules/lodash/_getData.js +15 -0
- package/node_modules/lodash/_getFuncName.js +31 -0
- package/node_modules/lodash/_getHolder.js +13 -0
- package/node_modules/lodash/_getMapData.js +18 -0
- package/node_modules/lodash/_getMatchData.js +24 -0
- package/node_modules/lodash/_getNative.js +17 -0
- package/node_modules/lodash/_getPrototype.js +6 -0
- package/node_modules/lodash/_getRawTag.js +46 -0
- package/node_modules/lodash/_getSymbols.js +30 -0
- package/node_modules/lodash/_getSymbolsIn.js +25 -0
- package/node_modules/lodash/_getTag.js +58 -0
- package/node_modules/lodash/_getValue.js +13 -0
- package/node_modules/lodash/_getView.js +33 -0
- package/node_modules/lodash/_getWrapDetails.js +17 -0
- package/node_modules/lodash/_hasPath.js +39 -0
- package/node_modules/lodash/_hasUnicode.js +26 -0
- package/node_modules/lodash/_hasUnicodeWord.js +15 -0
- package/node_modules/lodash/_hashClear.js +15 -0
- package/node_modules/lodash/_hashDelete.js +17 -0
- package/node_modules/lodash/_hashGet.js +30 -0
- package/node_modules/lodash/_hashHas.js +23 -0
- package/node_modules/lodash/_hashSet.js +23 -0
- package/node_modules/lodash/_initCloneArray.js +26 -0
- package/node_modules/lodash/_initCloneByTag.js +77 -0
- package/node_modules/lodash/_initCloneObject.js +18 -0
- package/node_modules/lodash/_insertWrapDetails.js +23 -0
- package/node_modules/lodash/_isFlattenable.js +20 -0
- package/node_modules/lodash/_isIndex.js +25 -0
- package/node_modules/lodash/_isIterateeCall.js +30 -0
- package/node_modules/lodash/_isKey.js +29 -0
- package/node_modules/lodash/_isKeyable.js +15 -0
- package/node_modules/lodash/_isLaziable.js +28 -0
- package/node_modules/lodash/_isMaskable.js +14 -0
- package/node_modules/lodash/_isMasked.js +20 -0
- package/node_modules/lodash/_isPrototype.js +18 -0
- package/node_modules/lodash/_isStrictComparable.js +15 -0
- package/node_modules/lodash/_iteratorToArray.js +18 -0
- package/node_modules/lodash/_lazyClone.js +23 -0
- package/node_modules/lodash/_lazyReverse.js +23 -0
- package/node_modules/lodash/_lazyValue.js +69 -0
- package/node_modules/lodash/_listCacheClear.js +13 -0
- package/node_modules/lodash/_listCacheDelete.js +35 -0
- package/node_modules/lodash/_listCacheGet.js +19 -0
- package/node_modules/lodash/_listCacheHas.js +16 -0
- package/node_modules/lodash/_listCacheSet.js +26 -0
- package/node_modules/lodash/_mapCacheClear.js +21 -0
- package/node_modules/lodash/_mapCacheDelete.js +18 -0
- package/node_modules/lodash/_mapCacheGet.js +16 -0
- package/node_modules/lodash/_mapCacheHas.js +16 -0
- package/node_modules/lodash/_mapCacheSet.js +22 -0
- package/node_modules/lodash/_mapToArray.js +18 -0
- package/node_modules/lodash/_matchesStrictComparable.js +20 -0
- package/node_modules/lodash/_memoizeCapped.js +26 -0
- package/node_modules/lodash/_mergeData.js +90 -0
- package/node_modules/lodash/_metaMap.js +6 -0
- package/node_modules/lodash/_nativeCreate.js +6 -0
- package/node_modules/lodash/_nativeKeys.js +6 -0
- package/node_modules/lodash/_nativeKeysIn.js +20 -0
- package/node_modules/lodash/_nodeUtil.js +30 -0
- package/node_modules/lodash/_objectToString.js +22 -0
- package/node_modules/lodash/_overArg.js +15 -0
- package/node_modules/lodash/_overRest.js +36 -0
- package/node_modules/lodash/_parent.js +16 -0
- package/node_modules/lodash/_reEscape.js +4 -0
- package/node_modules/lodash/_reEvaluate.js +4 -0
- package/node_modules/lodash/_reInterpolate.js +4 -0
- package/node_modules/lodash/_realNames.js +4 -0
- package/node_modules/lodash/_reorder.js +29 -0
- package/node_modules/lodash/_replaceHolders.js +29 -0
- package/node_modules/lodash/_root.js +9 -0
- package/node_modules/lodash/_safeGet.js +21 -0
- package/node_modules/lodash/_setCacheAdd.js +19 -0
- package/node_modules/lodash/_setCacheHas.js +14 -0
- package/node_modules/lodash/_setData.js +20 -0
- package/node_modules/lodash/_setToArray.js +18 -0
- package/node_modules/lodash/_setToPairs.js +18 -0
- package/node_modules/lodash/_setToString.js +14 -0
- package/node_modules/lodash/_setWrapToString.js +21 -0
- package/node_modules/lodash/_shortOut.js +37 -0
- package/node_modules/lodash/_shuffleSelf.js +28 -0
- package/node_modules/lodash/_stackClear.js +15 -0
- package/node_modules/lodash/_stackDelete.js +18 -0
- package/node_modules/lodash/_stackGet.js +14 -0
- package/node_modules/lodash/_stackHas.js +14 -0
- package/node_modules/lodash/_stackSet.js +34 -0
- package/node_modules/lodash/_strictIndexOf.js +23 -0
- package/node_modules/lodash/_strictLastIndexOf.js +21 -0
- package/node_modules/lodash/_stringSize.js +18 -0
- package/node_modules/lodash/_stringToArray.js +18 -0
- package/node_modules/lodash/_stringToPath.js +27 -0
- package/node_modules/lodash/_toKey.js +21 -0
- package/node_modules/lodash/_toSource.js +26 -0
- package/node_modules/lodash/_trimmedEndIndex.js +19 -0
- package/node_modules/lodash/_unescapeHtmlChar.js +21 -0
- package/node_modules/lodash/_unicodeSize.js +44 -0
- package/node_modules/lodash/_unicodeToArray.js +40 -0
- package/node_modules/lodash/_unicodeWords.js +69 -0
- package/node_modules/lodash/_updateWrapDetails.js +46 -0
- package/node_modules/lodash/_wrapperClone.js +23 -0
- package/node_modules/lodash/add.js +22 -0
- package/node_modules/lodash/after.js +42 -0
- package/node_modules/lodash/array.js +67 -0
- package/node_modules/lodash/ary.js +29 -0
- package/node_modules/lodash/assign.js +58 -0
- package/node_modules/lodash/assignIn.js +40 -0
- package/node_modules/lodash/assignInWith.js +38 -0
- package/node_modules/lodash/assignWith.js +37 -0
- package/node_modules/lodash/at.js +23 -0
- package/node_modules/lodash/attempt.js +35 -0
- package/node_modules/lodash/before.js +40 -0
- package/node_modules/lodash/bind.js +57 -0
- package/node_modules/lodash/bindAll.js +41 -0
- package/node_modules/lodash/bindKey.js +68 -0
- package/node_modules/lodash/camelCase.js +29 -0
- package/node_modules/lodash/capitalize.js +23 -0
- package/node_modules/lodash/castArray.js +44 -0
- package/node_modules/lodash/ceil.js +26 -0
- package/node_modules/lodash/chain.js +38 -0
- package/node_modules/lodash/chunk.js +50 -0
- package/node_modules/lodash/clamp.js +39 -0
- package/node_modules/lodash/clone.js +36 -0
- package/node_modules/lodash/cloneDeep.js +29 -0
- package/node_modules/lodash/cloneDeepWith.js +40 -0
- package/node_modules/lodash/cloneWith.js +42 -0
- package/node_modules/lodash/collection.js +30 -0
- package/node_modules/lodash/commit.js +33 -0
- package/node_modules/lodash/compact.js +31 -0
- package/node_modules/lodash/concat.js +43 -0
- package/node_modules/lodash/cond.js +60 -0
- package/node_modules/lodash/conforms.js +35 -0
- package/node_modules/lodash/conformsTo.js +32 -0
- package/node_modules/lodash/constant.js +26 -0
- package/node_modules/lodash/core.js +3877 -0
- package/node_modules/lodash/core.min.js +29 -0
- package/node_modules/lodash/countBy.js +40 -0
- package/node_modules/lodash/create.js +43 -0
- package/node_modules/lodash/curry.js +57 -0
- package/node_modules/lodash/curryRight.js +54 -0
- package/node_modules/lodash/date.js +3 -0
- package/node_modules/lodash/debounce.js +191 -0
- package/node_modules/lodash/deburr.js +45 -0
- package/node_modules/lodash/defaultTo.js +25 -0
- package/node_modules/lodash/defaults.js +64 -0
- package/node_modules/lodash/defaultsDeep.js +30 -0
- package/node_modules/lodash/defer.js +26 -0
- package/node_modules/lodash/delay.js +28 -0
- package/node_modules/lodash/difference.js +33 -0
- package/node_modules/lodash/differenceBy.js +44 -0
- package/node_modules/lodash/differenceWith.js +40 -0
- package/node_modules/lodash/divide.js +22 -0
- package/node_modules/lodash/drop.js +38 -0
- package/node_modules/lodash/dropRight.js +39 -0
- package/node_modules/lodash/dropRightWhile.js +45 -0
- package/node_modules/lodash/dropWhile.js +45 -0
- package/node_modules/lodash/each.js +1 -0
- package/node_modules/lodash/eachRight.js +1 -0
- package/node_modules/lodash/endsWith.js +43 -0
- package/node_modules/lodash/entries.js +1 -0
- package/node_modules/lodash/entriesIn.js +1 -0
- package/node_modules/lodash/eq.js +37 -0
- package/node_modules/lodash/escape.js +43 -0
- package/node_modules/lodash/escapeRegExp.js +32 -0
- package/node_modules/lodash/every.js +56 -0
- package/node_modules/lodash/extend.js +1 -0
- package/node_modules/lodash/extendWith.js +1 -0
- package/node_modules/lodash/fill.js +45 -0
- package/node_modules/lodash/filter.js +52 -0
- package/node_modules/lodash/find.js +42 -0
- package/node_modules/lodash/findIndex.js +55 -0
- package/node_modules/lodash/findKey.js +44 -0
- package/node_modules/lodash/findLast.js +25 -0
- package/node_modules/lodash/findLastIndex.js +59 -0
- package/node_modules/lodash/findLastKey.js +44 -0
- package/node_modules/lodash/first.js +1 -0
- package/node_modules/lodash/flake.lock +40 -0
- package/node_modules/lodash/flake.nix +20 -0
- package/node_modules/lodash/flatMap.js +29 -0
- package/node_modules/lodash/flatMapDeep.js +31 -0
- package/node_modules/lodash/flatMapDepth.js +31 -0
- package/node_modules/lodash/flatten.js +22 -0
- package/node_modules/lodash/flattenDeep.js +25 -0
- package/node_modules/lodash/flattenDepth.js +33 -0
- package/node_modules/lodash/flip.js +28 -0
- package/node_modules/lodash/floor.js +26 -0
- package/node_modules/lodash/flow.js +27 -0
- package/node_modules/lodash/flowRight.js +26 -0
- package/node_modules/lodash/forEach.js +41 -0
- package/node_modules/lodash/forEachRight.js +31 -0
- package/node_modules/lodash/forIn.js +39 -0
- package/node_modules/lodash/forInRight.js +37 -0
- package/node_modules/lodash/forOwn.js +36 -0
- package/node_modules/lodash/forOwnRight.js +34 -0
- package/node_modules/lodash/fp/F.js +1 -0
- package/node_modules/lodash/fp/T.js +1 -0
- package/node_modules/lodash/fp/__.js +1 -0
- package/node_modules/lodash/fp/_baseConvert.js +569 -0
- package/node_modules/lodash/fp/_convertBrowser.js +18 -0
- package/node_modules/lodash/fp/_falseOptions.js +7 -0
- package/node_modules/lodash/fp/_mapping.js +358 -0
- package/node_modules/lodash/fp/_util.js +16 -0
- package/node_modules/lodash/fp/add.js +5 -0
- package/node_modules/lodash/fp/after.js +5 -0
- package/node_modules/lodash/fp/all.js +1 -0
- package/node_modules/lodash/fp/allPass.js +1 -0
- package/node_modules/lodash/fp/always.js +1 -0
- package/node_modules/lodash/fp/any.js +1 -0
- package/node_modules/lodash/fp/anyPass.js +1 -0
- package/node_modules/lodash/fp/apply.js +1 -0
- package/node_modules/lodash/fp/array.js +2 -0
- package/node_modules/lodash/fp/ary.js +5 -0
- package/node_modules/lodash/fp/assign.js +5 -0
- package/node_modules/lodash/fp/assignAll.js +5 -0
- package/node_modules/lodash/fp/assignAllWith.js +5 -0
- package/node_modules/lodash/fp/assignIn.js +5 -0
- package/node_modules/lodash/fp/assignInAll.js +5 -0
- package/node_modules/lodash/fp/assignInAllWith.js +5 -0
- package/node_modules/lodash/fp/assignInWith.js +5 -0
- package/node_modules/lodash/fp/assignWith.js +5 -0
- package/node_modules/lodash/fp/assoc.js +1 -0
- package/node_modules/lodash/fp/assocPath.js +1 -0
- package/node_modules/lodash/fp/at.js +5 -0
- package/node_modules/lodash/fp/attempt.js +5 -0
- package/node_modules/lodash/fp/before.js +5 -0
- package/node_modules/lodash/fp/bind.js +5 -0
- package/node_modules/lodash/fp/bindAll.js +5 -0
- package/node_modules/lodash/fp/bindKey.js +5 -0
- package/node_modules/lodash/fp/camelCase.js +5 -0
- package/node_modules/lodash/fp/capitalize.js +5 -0
- package/node_modules/lodash/fp/castArray.js +5 -0
- package/node_modules/lodash/fp/ceil.js +5 -0
- package/node_modules/lodash/fp/chain.js +5 -0
- package/node_modules/lodash/fp/chunk.js +5 -0
- package/node_modules/lodash/fp/clamp.js +5 -0
- package/node_modules/lodash/fp/clone.js +5 -0
- package/node_modules/lodash/fp/cloneDeep.js +5 -0
- package/node_modules/lodash/fp/cloneDeepWith.js +5 -0
- package/node_modules/lodash/fp/cloneWith.js +5 -0
- package/node_modules/lodash/fp/collection.js +2 -0
- package/node_modules/lodash/fp/commit.js +5 -0
- package/node_modules/lodash/fp/compact.js +5 -0
- package/node_modules/lodash/fp/complement.js +1 -0
- package/node_modules/lodash/fp/compose.js +1 -0
- package/node_modules/lodash/fp/concat.js +5 -0
- package/node_modules/lodash/fp/cond.js +5 -0
- package/node_modules/lodash/fp/conforms.js +1 -0
- package/node_modules/lodash/fp/conformsTo.js +5 -0
- package/node_modules/lodash/fp/constant.js +5 -0
- package/node_modules/lodash/fp/contains.js +1 -0
- package/node_modules/lodash/fp/convert.js +18 -0
- package/node_modules/lodash/fp/countBy.js +5 -0
- package/node_modules/lodash/fp/create.js +5 -0
- package/node_modules/lodash/fp/curry.js +5 -0
- package/node_modules/lodash/fp/curryN.js +5 -0
- package/node_modules/lodash/fp/curryRight.js +5 -0
- package/node_modules/lodash/fp/curryRightN.js +5 -0
- package/node_modules/lodash/fp/date.js +2 -0
- package/node_modules/lodash/fp/debounce.js +5 -0
- package/node_modules/lodash/fp/deburr.js +5 -0
- package/node_modules/lodash/fp/defaultTo.js +5 -0
- package/node_modules/lodash/fp/defaults.js +5 -0
- package/node_modules/lodash/fp/defaultsAll.js +5 -0
- package/node_modules/lodash/fp/defaultsDeep.js +5 -0
- package/node_modules/lodash/fp/defaultsDeepAll.js +5 -0
- package/node_modules/lodash/fp/defer.js +5 -0
- package/node_modules/lodash/fp/delay.js +5 -0
- package/node_modules/lodash/fp/difference.js +5 -0
- package/node_modules/lodash/fp/differenceBy.js +5 -0
- package/node_modules/lodash/fp/differenceWith.js +5 -0
- package/node_modules/lodash/fp/dissoc.js +1 -0
- package/node_modules/lodash/fp/dissocPath.js +1 -0
- package/node_modules/lodash/fp/divide.js +5 -0
- package/node_modules/lodash/fp/drop.js +5 -0
- package/node_modules/lodash/fp/dropLast.js +1 -0
- package/node_modules/lodash/fp/dropLastWhile.js +1 -0
- package/node_modules/lodash/fp/dropRight.js +5 -0
- package/node_modules/lodash/fp/dropRightWhile.js +5 -0
- package/node_modules/lodash/fp/dropWhile.js +5 -0
- package/node_modules/lodash/fp/each.js +1 -0
- package/node_modules/lodash/fp/eachRight.js +1 -0
- package/node_modules/lodash/fp/endsWith.js +5 -0
- package/node_modules/lodash/fp/entries.js +1 -0
- package/node_modules/lodash/fp/entriesIn.js +1 -0
- package/node_modules/lodash/fp/eq.js +5 -0
- package/node_modules/lodash/fp/equals.js +1 -0
- package/node_modules/lodash/fp/escape.js +5 -0
- package/node_modules/lodash/fp/escapeRegExp.js +5 -0
- package/node_modules/lodash/fp/every.js +5 -0
- package/node_modules/lodash/fp/extend.js +1 -0
- package/node_modules/lodash/fp/extendAll.js +1 -0
- package/node_modules/lodash/fp/extendAllWith.js +1 -0
- package/node_modules/lodash/fp/extendWith.js +1 -0
- package/node_modules/lodash/fp/fill.js +5 -0
- package/node_modules/lodash/fp/filter.js +5 -0
- package/node_modules/lodash/fp/find.js +5 -0
- package/node_modules/lodash/fp/findFrom.js +5 -0
- package/node_modules/lodash/fp/findIndex.js +5 -0
- package/node_modules/lodash/fp/findIndexFrom.js +5 -0
- package/node_modules/lodash/fp/findKey.js +5 -0
- package/node_modules/lodash/fp/findLast.js +5 -0
- package/node_modules/lodash/fp/findLastFrom.js +5 -0
- package/node_modules/lodash/fp/findLastIndex.js +5 -0
- package/node_modules/lodash/fp/findLastIndexFrom.js +5 -0
- package/node_modules/lodash/fp/findLastKey.js +5 -0
- package/node_modules/lodash/fp/first.js +1 -0
- package/node_modules/lodash/fp/flatMap.js +5 -0
- package/node_modules/lodash/fp/flatMapDeep.js +5 -0
- package/node_modules/lodash/fp/flatMapDepth.js +5 -0
- package/node_modules/lodash/fp/flatten.js +5 -0
- package/node_modules/lodash/fp/flattenDeep.js +5 -0
- package/node_modules/lodash/fp/flattenDepth.js +5 -0
- package/node_modules/lodash/fp/flip.js +5 -0
- package/node_modules/lodash/fp/floor.js +5 -0
- package/node_modules/lodash/fp/flow.js +5 -0
- package/node_modules/lodash/fp/flowRight.js +5 -0
- package/node_modules/lodash/fp/forEach.js +5 -0
- package/node_modules/lodash/fp/forEachRight.js +5 -0
- package/node_modules/lodash/fp/forIn.js +5 -0
- package/node_modules/lodash/fp/forInRight.js +5 -0
- package/node_modules/lodash/fp/forOwn.js +5 -0
- package/node_modules/lodash/fp/forOwnRight.js +5 -0
- package/node_modules/lodash/fp/fromPairs.js +5 -0
- package/node_modules/lodash/fp/function.js +2 -0
- package/node_modules/lodash/fp/functions.js +5 -0
- package/node_modules/lodash/fp/functionsIn.js +5 -0
- package/node_modules/lodash/fp/get.js +5 -0
- package/node_modules/lodash/fp/getOr.js +5 -0
- package/node_modules/lodash/fp/groupBy.js +5 -0
- package/node_modules/lodash/fp/gt.js +5 -0
- package/node_modules/lodash/fp/gte.js +5 -0
- package/node_modules/lodash/fp/has.js +5 -0
- package/node_modules/lodash/fp/hasIn.js +5 -0
- package/node_modules/lodash/fp/head.js +5 -0
- package/node_modules/lodash/fp/identical.js +1 -0
- package/node_modules/lodash/fp/identity.js +5 -0
- package/node_modules/lodash/fp/inRange.js +5 -0
- package/node_modules/lodash/fp/includes.js +5 -0
- package/node_modules/lodash/fp/includesFrom.js +5 -0
- package/node_modules/lodash/fp/indexBy.js +1 -0
- package/node_modules/lodash/fp/indexOf.js +5 -0
- package/node_modules/lodash/fp/indexOfFrom.js +5 -0
- package/node_modules/lodash/fp/init.js +1 -0
- package/node_modules/lodash/fp/initial.js +5 -0
- package/node_modules/lodash/fp/intersection.js +5 -0
- package/node_modules/lodash/fp/intersectionBy.js +5 -0
- package/node_modules/lodash/fp/intersectionWith.js +5 -0
- package/node_modules/lodash/fp/invert.js +5 -0
- package/node_modules/lodash/fp/invertBy.js +5 -0
- package/node_modules/lodash/fp/invertObj.js +1 -0
- package/node_modules/lodash/fp/invoke.js +5 -0
- package/node_modules/lodash/fp/invokeArgs.js +5 -0
- package/node_modules/lodash/fp/invokeArgsMap.js +5 -0
- package/node_modules/lodash/fp/invokeMap.js +5 -0
- package/node_modules/lodash/fp/isArguments.js +5 -0
- package/node_modules/lodash/fp/isArray.js +5 -0
- package/node_modules/lodash/fp/isArrayBuffer.js +5 -0
- package/node_modules/lodash/fp/isArrayLike.js +5 -0
- package/node_modules/lodash/fp/isArrayLikeObject.js +5 -0
- package/node_modules/lodash/fp/isBoolean.js +5 -0
- package/node_modules/lodash/fp/isBuffer.js +5 -0
- package/node_modules/lodash/fp/isDate.js +5 -0
- package/node_modules/lodash/fp/isElement.js +5 -0
- package/node_modules/lodash/fp/isEmpty.js +5 -0
- package/node_modules/lodash/fp/isEqual.js +5 -0
- package/node_modules/lodash/fp/isEqualWith.js +5 -0
- package/node_modules/lodash/fp/isError.js +5 -0
- package/node_modules/lodash/fp/isFinite.js +5 -0
- package/node_modules/lodash/fp/isFunction.js +5 -0
- package/node_modules/lodash/fp/isInteger.js +5 -0
- package/node_modules/lodash/fp/isLength.js +5 -0
- package/node_modules/lodash/fp/isMap.js +5 -0
- package/node_modules/lodash/fp/isMatch.js +5 -0
- package/node_modules/lodash/fp/isMatchWith.js +5 -0
- package/node_modules/lodash/fp/isNaN.js +5 -0
- package/node_modules/lodash/fp/isNative.js +5 -0
- package/node_modules/lodash/fp/isNil.js +5 -0
- package/node_modules/lodash/fp/isNull.js +5 -0
- package/node_modules/lodash/fp/isNumber.js +5 -0
- package/node_modules/lodash/fp/isObject.js +5 -0
- package/node_modules/lodash/fp/isObjectLike.js +5 -0
- package/node_modules/lodash/fp/isPlainObject.js +5 -0
- package/node_modules/lodash/fp/isRegExp.js +5 -0
- package/node_modules/lodash/fp/isSafeInteger.js +5 -0
- package/node_modules/lodash/fp/isSet.js +5 -0
- package/node_modules/lodash/fp/isString.js +5 -0
- package/node_modules/lodash/fp/isSymbol.js +5 -0
- package/node_modules/lodash/fp/isTypedArray.js +5 -0
- package/node_modules/lodash/fp/isUndefined.js +5 -0
- package/node_modules/lodash/fp/isWeakMap.js +5 -0
- package/node_modules/lodash/fp/isWeakSet.js +5 -0
- package/node_modules/lodash/fp/iteratee.js +5 -0
- package/node_modules/lodash/fp/join.js +5 -0
- package/node_modules/lodash/fp/juxt.js +1 -0
- package/node_modules/lodash/fp/kebabCase.js +5 -0
- package/node_modules/lodash/fp/keyBy.js +5 -0
- package/node_modules/lodash/fp/keys.js +5 -0
- package/node_modules/lodash/fp/keysIn.js +5 -0
- package/node_modules/lodash/fp/lang.js +2 -0
- package/node_modules/lodash/fp/last.js +5 -0
- package/node_modules/lodash/fp/lastIndexOf.js +5 -0
- package/node_modules/lodash/fp/lastIndexOfFrom.js +5 -0
- package/node_modules/lodash/fp/lowerCase.js +5 -0
- package/node_modules/lodash/fp/lowerFirst.js +5 -0
- package/node_modules/lodash/fp/lt.js +5 -0
- package/node_modules/lodash/fp/lte.js +5 -0
- package/node_modules/lodash/fp/map.js +5 -0
- package/node_modules/lodash/fp/mapKeys.js +5 -0
- package/node_modules/lodash/fp/mapValues.js +5 -0
- package/node_modules/lodash/fp/matches.js +1 -0
- package/node_modules/lodash/fp/matchesProperty.js +5 -0
- package/node_modules/lodash/fp/math.js +2 -0
- package/node_modules/lodash/fp/max.js +5 -0
- package/node_modules/lodash/fp/maxBy.js +5 -0
- package/node_modules/lodash/fp/mean.js +5 -0
- package/node_modules/lodash/fp/meanBy.js +5 -0
- package/node_modules/lodash/fp/memoize.js +5 -0
- package/node_modules/lodash/fp/merge.js +5 -0
- package/node_modules/lodash/fp/mergeAll.js +5 -0
- package/node_modules/lodash/fp/mergeAllWith.js +5 -0
- package/node_modules/lodash/fp/mergeWith.js +5 -0
- package/node_modules/lodash/fp/method.js +5 -0
- package/node_modules/lodash/fp/methodOf.js +5 -0
- package/node_modules/lodash/fp/min.js +5 -0
- package/node_modules/lodash/fp/minBy.js +5 -0
- package/node_modules/lodash/fp/mixin.js +5 -0
- package/node_modules/lodash/fp/multiply.js +5 -0
- package/node_modules/lodash/fp/nAry.js +1 -0
- package/node_modules/lodash/fp/negate.js +5 -0
- package/node_modules/lodash/fp/next.js +5 -0
- package/node_modules/lodash/fp/noop.js +5 -0
- package/node_modules/lodash/fp/now.js +5 -0
- package/node_modules/lodash/fp/nth.js +5 -0
- package/node_modules/lodash/fp/nthArg.js +5 -0
- package/node_modules/lodash/fp/number.js +2 -0
- package/node_modules/lodash/fp/object.js +2 -0
- package/node_modules/lodash/fp/omit.js +5 -0
- package/node_modules/lodash/fp/omitAll.js +1 -0
- package/node_modules/lodash/fp/omitBy.js +5 -0
- package/node_modules/lodash/fp/once.js +5 -0
- package/node_modules/lodash/fp/orderBy.js +5 -0
- package/node_modules/lodash/fp/over.js +5 -0
- package/node_modules/lodash/fp/overArgs.js +5 -0
- package/node_modules/lodash/fp/overEvery.js +5 -0
- package/node_modules/lodash/fp/overSome.js +5 -0
- package/node_modules/lodash/fp/pad.js +5 -0
- package/node_modules/lodash/fp/padChars.js +5 -0
- package/node_modules/lodash/fp/padCharsEnd.js +5 -0
- package/node_modules/lodash/fp/padCharsStart.js +5 -0
- package/node_modules/lodash/fp/padEnd.js +5 -0
- package/node_modules/lodash/fp/padStart.js +5 -0
- package/node_modules/lodash/fp/parseInt.js +5 -0
- package/node_modules/lodash/fp/partial.js +5 -0
- package/node_modules/lodash/fp/partialRight.js +5 -0
- package/node_modules/lodash/fp/partition.js +5 -0
- package/node_modules/lodash/fp/path.js +1 -0
- package/node_modules/lodash/fp/pathEq.js +1 -0
- package/node_modules/lodash/fp/pathOr.js +1 -0
- package/node_modules/lodash/fp/paths.js +1 -0
- package/node_modules/lodash/fp/pick.js +5 -0
- package/node_modules/lodash/fp/pickAll.js +1 -0
- package/node_modules/lodash/fp/pickBy.js +5 -0
- package/node_modules/lodash/fp/pipe.js +1 -0
- package/node_modules/lodash/fp/placeholder.js +6 -0
- package/node_modules/lodash/fp/plant.js +5 -0
- package/node_modules/lodash/fp/pluck.js +1 -0
- package/node_modules/lodash/fp/prop.js +1 -0
- package/node_modules/lodash/fp/propEq.js +1 -0
- package/node_modules/lodash/fp/propOr.js +1 -0
- package/node_modules/lodash/fp/property.js +1 -0
- package/node_modules/lodash/fp/propertyOf.js +5 -0
- package/node_modules/lodash/fp/props.js +1 -0
- package/node_modules/lodash/fp/pull.js +5 -0
- package/node_modules/lodash/fp/pullAll.js +5 -0
- package/node_modules/lodash/fp/pullAllBy.js +5 -0
- package/node_modules/lodash/fp/pullAllWith.js +5 -0
- package/node_modules/lodash/fp/pullAt.js +5 -0
- package/node_modules/lodash/fp/random.js +5 -0
- package/node_modules/lodash/fp/range.js +5 -0
- package/node_modules/lodash/fp/rangeRight.js +5 -0
- package/node_modules/lodash/fp/rangeStep.js +5 -0
- package/node_modules/lodash/fp/rangeStepRight.js +5 -0
- package/node_modules/lodash/fp/rearg.js +5 -0
- package/node_modules/lodash/fp/reduce.js +5 -0
- package/node_modules/lodash/fp/reduceRight.js +5 -0
- package/node_modules/lodash/fp/reject.js +5 -0
- package/node_modules/lodash/fp/remove.js +5 -0
- package/node_modules/lodash/fp/repeat.js +5 -0
- package/node_modules/lodash/fp/replace.js +5 -0
- package/node_modules/lodash/fp/rest.js +5 -0
- package/node_modules/lodash/fp/restFrom.js +5 -0
- package/node_modules/lodash/fp/result.js +5 -0
- package/node_modules/lodash/fp/reverse.js +5 -0
- package/node_modules/lodash/fp/round.js +5 -0
- package/node_modules/lodash/fp/sample.js +5 -0
- package/node_modules/lodash/fp/sampleSize.js +5 -0
- package/node_modules/lodash/fp/seq.js +2 -0
- package/node_modules/lodash/fp/set.js +5 -0
- package/node_modules/lodash/fp/setWith.js +5 -0
- package/node_modules/lodash/fp/shuffle.js +5 -0
- package/node_modules/lodash/fp/size.js +5 -0
- package/node_modules/lodash/fp/slice.js +5 -0
- package/node_modules/lodash/fp/snakeCase.js +5 -0
- package/node_modules/lodash/fp/some.js +5 -0
- package/node_modules/lodash/fp/sortBy.js +5 -0
- package/node_modules/lodash/fp/sortedIndex.js +5 -0
- package/node_modules/lodash/fp/sortedIndexBy.js +5 -0
- package/node_modules/lodash/fp/sortedIndexOf.js +5 -0
- package/node_modules/lodash/fp/sortedLastIndex.js +5 -0
- package/node_modules/lodash/fp/sortedLastIndexBy.js +5 -0
- package/node_modules/lodash/fp/sortedLastIndexOf.js +5 -0
- package/node_modules/lodash/fp/sortedUniq.js +5 -0
- package/node_modules/lodash/fp/sortedUniqBy.js +5 -0
- package/node_modules/lodash/fp/split.js +5 -0
- package/node_modules/lodash/fp/spread.js +5 -0
- package/node_modules/lodash/fp/spreadFrom.js +5 -0
- package/node_modules/lodash/fp/startCase.js +5 -0
- package/node_modules/lodash/fp/startsWith.js +5 -0
- package/node_modules/lodash/fp/string.js +2 -0
- package/node_modules/lodash/fp/stubArray.js +5 -0
- package/node_modules/lodash/fp/stubFalse.js +5 -0
- package/node_modules/lodash/fp/stubObject.js +5 -0
- package/node_modules/lodash/fp/stubString.js +5 -0
- package/node_modules/lodash/fp/stubTrue.js +5 -0
- package/node_modules/lodash/fp/subtract.js +5 -0
- package/node_modules/lodash/fp/sum.js +5 -0
- package/node_modules/lodash/fp/sumBy.js +5 -0
- package/node_modules/lodash/fp/symmetricDifference.js +1 -0
- package/node_modules/lodash/fp/symmetricDifferenceBy.js +1 -0
- package/node_modules/lodash/fp/symmetricDifferenceWith.js +1 -0
- package/node_modules/lodash/fp/tail.js +5 -0
- package/node_modules/lodash/fp/take.js +5 -0
- package/node_modules/lodash/fp/takeLast.js +1 -0
- package/node_modules/lodash/fp/takeLastWhile.js +1 -0
- package/node_modules/lodash/fp/takeRight.js +5 -0
- package/node_modules/lodash/fp/takeRightWhile.js +5 -0
- package/node_modules/lodash/fp/takeWhile.js +5 -0
- package/node_modules/lodash/fp/tap.js +5 -0
- package/node_modules/lodash/fp/template.js +5 -0
- package/node_modules/lodash/fp/templateSettings.js +5 -0
- package/node_modules/lodash/fp/throttle.js +5 -0
- package/node_modules/lodash/fp/thru.js +5 -0
- package/node_modules/lodash/fp/times.js +5 -0
- package/node_modules/lodash/fp/toArray.js +5 -0
- package/node_modules/lodash/fp/toFinite.js +5 -0
- package/node_modules/lodash/fp/toInteger.js +5 -0
- package/node_modules/lodash/fp/toIterator.js +5 -0
- package/node_modules/lodash/fp/toJSON.js +5 -0
- package/node_modules/lodash/fp/toLength.js +5 -0
- package/node_modules/lodash/fp/toLower.js +5 -0
- package/node_modules/lodash/fp/toNumber.js +5 -0
- package/node_modules/lodash/fp/toPairs.js +5 -0
- package/node_modules/lodash/fp/toPairsIn.js +5 -0
- package/node_modules/lodash/fp/toPath.js +5 -0
- package/node_modules/lodash/fp/toPlainObject.js +5 -0
- package/node_modules/lodash/fp/toSafeInteger.js +5 -0
- package/node_modules/lodash/fp/toString.js +5 -0
- package/node_modules/lodash/fp/toUpper.js +5 -0
- package/node_modules/lodash/fp/transform.js +5 -0
- package/node_modules/lodash/fp/trim.js +5 -0
- package/node_modules/lodash/fp/trimChars.js +5 -0
- package/node_modules/lodash/fp/trimCharsEnd.js +5 -0
- package/node_modules/lodash/fp/trimCharsStart.js +5 -0
- package/node_modules/lodash/fp/trimEnd.js +5 -0
- package/node_modules/lodash/fp/trimStart.js +5 -0
- package/node_modules/lodash/fp/truncate.js +5 -0
- package/node_modules/lodash/fp/unapply.js +1 -0
- package/node_modules/lodash/fp/unary.js +5 -0
- package/node_modules/lodash/fp/unescape.js +5 -0
- package/node_modules/lodash/fp/union.js +5 -0
- package/node_modules/lodash/fp/unionBy.js +5 -0
- package/node_modules/lodash/fp/unionWith.js +5 -0
- package/node_modules/lodash/fp/uniq.js +5 -0
- package/node_modules/lodash/fp/uniqBy.js +5 -0
- package/node_modules/lodash/fp/uniqWith.js +5 -0
- package/node_modules/lodash/fp/uniqueId.js +5 -0
- package/node_modules/lodash/fp/unnest.js +1 -0
- package/node_modules/lodash/fp/unset.js +5 -0
- package/node_modules/lodash/fp/unzip.js +5 -0
- package/node_modules/lodash/fp/unzipWith.js +5 -0
- package/node_modules/lodash/fp/update.js +5 -0
- package/node_modules/lodash/fp/updateWith.js +5 -0
- package/node_modules/lodash/fp/upperCase.js +5 -0
- package/node_modules/lodash/fp/upperFirst.js +5 -0
- package/node_modules/lodash/fp/useWith.js +1 -0
- package/node_modules/lodash/fp/util.js +2 -0
- package/node_modules/lodash/fp/value.js +5 -0
- package/node_modules/lodash/fp/valueOf.js +5 -0
- package/node_modules/lodash/fp/values.js +5 -0
- package/node_modules/lodash/fp/valuesIn.js +5 -0
- package/node_modules/lodash/fp/where.js +1 -0
- package/node_modules/lodash/fp/whereEq.js +1 -0
- package/node_modules/lodash/fp/without.js +5 -0
- package/node_modules/lodash/fp/words.js +5 -0
- package/node_modules/lodash/fp/wrap.js +5 -0
- package/node_modules/lodash/fp/wrapperAt.js +5 -0
- package/node_modules/lodash/fp/wrapperChain.js +5 -0
- package/node_modules/lodash/fp/wrapperLodash.js +5 -0
- package/node_modules/lodash/fp/wrapperReverse.js +5 -0
- package/node_modules/lodash/fp/wrapperValue.js +5 -0
- package/node_modules/lodash/fp/xor.js +5 -0
- package/node_modules/lodash/fp/xorBy.js +5 -0
- package/node_modules/lodash/fp/xorWith.js +5 -0
- package/node_modules/lodash/fp/zip.js +5 -0
- package/node_modules/lodash/fp/zipAll.js +5 -0
- package/node_modules/lodash/fp/zipObj.js +1 -0
- package/node_modules/lodash/fp/zipObject.js +5 -0
- package/node_modules/lodash/fp/zipObjectDeep.js +5 -0
- package/node_modules/lodash/fp/zipWith.js +5 -0
- package/node_modules/lodash/fp.js +2 -0
- package/node_modules/lodash/fromPairs.js +28 -0
- package/node_modules/lodash/function.js +25 -0
- package/node_modules/lodash/functions.js +31 -0
- package/node_modules/lodash/functionsIn.js +31 -0
- package/node_modules/lodash/get.js +33 -0
- package/node_modules/lodash/groupBy.js +41 -0
- package/node_modules/lodash/gt.js +29 -0
- package/node_modules/lodash/gte.js +30 -0
- package/node_modules/lodash/has.js +35 -0
- package/node_modules/lodash/hasIn.js +34 -0
- package/node_modules/lodash/head.js +23 -0
- package/node_modules/lodash/identity.js +21 -0
- package/node_modules/lodash/inRange.js +55 -0
- package/node_modules/lodash/includes.js +53 -0
- package/node_modules/lodash/index.js +1 -0
- package/node_modules/lodash/indexOf.js +42 -0
- package/node_modules/lodash/initial.js +22 -0
- package/node_modules/lodash/intersection.js +30 -0
- package/node_modules/lodash/intersectionBy.js +45 -0
- package/node_modules/lodash/intersectionWith.js +41 -0
- package/node_modules/lodash/invert.js +42 -0
- package/node_modules/lodash/invertBy.js +56 -0
- package/node_modules/lodash/invoke.js +24 -0
- package/node_modules/lodash/invokeMap.js +41 -0
- package/node_modules/lodash/isArguments.js +36 -0
- package/node_modules/lodash/isArray.js +26 -0
- package/node_modules/lodash/isArrayBuffer.js +27 -0
- package/node_modules/lodash/isArrayLike.js +33 -0
- package/node_modules/lodash/isArrayLikeObject.js +33 -0
- package/node_modules/lodash/isBoolean.js +29 -0
- package/node_modules/lodash/isBuffer.js +38 -0
- package/node_modules/lodash/isDate.js +27 -0
- package/node_modules/lodash/isElement.js +25 -0
- package/node_modules/lodash/isEmpty.js +77 -0
- package/node_modules/lodash/isEqual.js +35 -0
- package/node_modules/lodash/isEqualWith.js +41 -0
- package/node_modules/lodash/isError.js +36 -0
- package/node_modules/lodash/isFinite.js +36 -0
- package/node_modules/lodash/isFunction.js +37 -0
- package/node_modules/lodash/isInteger.js +33 -0
- package/node_modules/lodash/isLength.js +35 -0
- package/node_modules/lodash/isMap.js +27 -0
- package/node_modules/lodash/isMatch.js +36 -0
- package/node_modules/lodash/isMatchWith.js +41 -0
- package/node_modules/lodash/isNaN.js +38 -0
- package/node_modules/lodash/isNative.js +40 -0
- package/node_modules/lodash/isNil.js +25 -0
- package/node_modules/lodash/isNull.js +22 -0
- package/node_modules/lodash/isNumber.js +38 -0
- package/node_modules/lodash/isObject.js +31 -0
- package/node_modules/lodash/isObjectLike.js +29 -0
- package/node_modules/lodash/isPlainObject.js +62 -0
- package/node_modules/lodash/isRegExp.js +27 -0
- package/node_modules/lodash/isSafeInteger.js +37 -0
- package/node_modules/lodash/isSet.js +27 -0
- package/node_modules/lodash/isString.js +30 -0
- package/node_modules/lodash/isSymbol.js +29 -0
- package/node_modules/lodash/isTypedArray.js +27 -0
- package/node_modules/lodash/isUndefined.js +22 -0
- package/node_modules/lodash/isWeakMap.js +28 -0
- package/node_modules/lodash/isWeakSet.js +28 -0
- package/node_modules/lodash/iteratee.js +53 -0
- package/node_modules/lodash/join.js +26 -0
- package/node_modules/lodash/kebabCase.js +28 -0
- package/node_modules/lodash/keyBy.js +36 -0
- package/node_modules/lodash/keys.js +37 -0
- package/node_modules/lodash/keysIn.js +32 -0
- package/node_modules/lodash/lang.js +58 -0
- package/node_modules/lodash/last.js +20 -0
- package/node_modules/lodash/lastIndexOf.js +46 -0
- package/node_modules/lodash/lodash.js +17209 -0
- package/node_modules/lodash/lodash.min.js +140 -0
- package/node_modules/lodash/lowerCase.js +27 -0
- package/node_modules/lodash/lowerFirst.js +22 -0
- package/node_modules/lodash/lt.js +29 -0
- package/node_modules/lodash/lte.js +30 -0
- package/node_modules/lodash/map.js +53 -0
- package/node_modules/lodash/mapKeys.js +36 -0
- package/node_modules/lodash/mapValues.js +43 -0
- package/node_modules/lodash/matches.js +46 -0
- package/node_modules/lodash/matchesProperty.js +44 -0
- package/node_modules/lodash/math.js +17 -0
- package/node_modules/lodash/max.js +29 -0
- package/node_modules/lodash/maxBy.js +34 -0
- package/node_modules/lodash/mean.js +22 -0
- package/node_modules/lodash/meanBy.js +31 -0
- package/node_modules/lodash/memoize.js +73 -0
- package/node_modules/lodash/merge.js +39 -0
- package/node_modules/lodash/mergeWith.js +39 -0
- package/node_modules/lodash/method.js +34 -0
- package/node_modules/lodash/methodOf.js +33 -0
- package/node_modules/lodash/min.js +29 -0
- package/node_modules/lodash/minBy.js +34 -0
- package/node_modules/lodash/mixin.js +74 -0
- package/node_modules/lodash/multiply.js +22 -0
- package/node_modules/lodash/negate.js +40 -0
- package/node_modules/lodash/next.js +35 -0
- package/node_modules/lodash/noop.js +17 -0
- package/node_modules/lodash/now.js +23 -0
- package/node_modules/lodash/nth.js +29 -0
- package/node_modules/lodash/nthArg.js +32 -0
- package/node_modules/lodash/number.js +5 -0
- package/node_modules/lodash/object.js +49 -0
- package/node_modules/lodash/omit.js +57 -0
- package/node_modules/lodash/omitBy.js +29 -0
- package/node_modules/lodash/once.js +25 -0
- package/node_modules/lodash/orderBy.js +47 -0
- package/node_modules/lodash/over.js +24 -0
- package/node_modules/lodash/overArgs.js +61 -0
- package/node_modules/lodash/overEvery.js +34 -0
- package/node_modules/lodash/overSome.js +37 -0
- package/node_modules/lodash/package.json +67 -0
- package/node_modules/lodash/pad.js +49 -0
- package/node_modules/lodash/padEnd.js +39 -0
- package/node_modules/lodash/padStart.js +39 -0
- package/node_modules/lodash/parseInt.js +43 -0
- package/node_modules/lodash/partial.js +50 -0
- package/node_modules/lodash/partialRight.js +49 -0
- package/node_modules/lodash/partition.js +43 -0
- package/node_modules/lodash/pick.js +25 -0
- package/node_modules/lodash/pickBy.js +37 -0
- package/node_modules/lodash/plant.js +48 -0
- package/node_modules/lodash/property.js +32 -0
- package/node_modules/lodash/propertyOf.js +30 -0
- package/node_modules/lodash/pull.js +29 -0
- package/node_modules/lodash/pullAll.js +29 -0
- package/node_modules/lodash/pullAllBy.js +33 -0
- package/node_modules/lodash/pullAllWith.js +32 -0
- package/node_modules/lodash/pullAt.js +43 -0
- package/node_modules/lodash/random.js +82 -0
- package/node_modules/lodash/range.js +46 -0
- package/node_modules/lodash/rangeRight.js +41 -0
- package/node_modules/lodash/rearg.js +33 -0
- package/node_modules/lodash/reduce.js +51 -0
- package/node_modules/lodash/reduceRight.js +36 -0
- package/node_modules/lodash/reject.js +46 -0
- package/node_modules/lodash/release.md +48 -0
- package/node_modules/lodash/remove.js +53 -0
- package/node_modules/lodash/repeat.js +37 -0
- package/node_modules/lodash/replace.js +29 -0
- package/node_modules/lodash/rest.js +40 -0
- package/node_modules/lodash/result.js +56 -0
- package/node_modules/lodash/reverse.js +34 -0
- package/node_modules/lodash/round.js +26 -0
- package/node_modules/lodash/sample.js +24 -0
- package/node_modules/lodash/sampleSize.js +37 -0
- package/node_modules/lodash/seq.js +16 -0
- package/node_modules/lodash/set.js +35 -0
- package/node_modules/lodash/setWith.js +32 -0
- package/node_modules/lodash/shuffle.js +25 -0
- package/node_modules/lodash/size.js +46 -0
- package/node_modules/lodash/slice.js +37 -0
- package/node_modules/lodash/snakeCase.js +28 -0
- package/node_modules/lodash/some.js +51 -0
- package/node_modules/lodash/sortBy.js +48 -0
- package/node_modules/lodash/sortedIndex.js +24 -0
- package/node_modules/lodash/sortedIndexBy.js +33 -0
- package/node_modules/lodash/sortedIndexOf.js +31 -0
- package/node_modules/lodash/sortedLastIndex.js +25 -0
- package/node_modules/lodash/sortedLastIndexBy.js +33 -0
- package/node_modules/lodash/sortedLastIndexOf.js +31 -0
- package/node_modules/lodash/sortedUniq.js +24 -0
- package/node_modules/lodash/sortedUniqBy.js +26 -0
- package/node_modules/lodash/split.js +52 -0
- package/node_modules/lodash/spread.js +63 -0
- package/node_modules/lodash/startCase.js +29 -0
- package/node_modules/lodash/startsWith.js +39 -0
- package/node_modules/lodash/string.js +33 -0
- package/node_modules/lodash/stubArray.js +23 -0
- package/node_modules/lodash/stubFalse.js +18 -0
- package/node_modules/lodash/stubObject.js +23 -0
- package/node_modules/lodash/stubString.js +18 -0
- package/node_modules/lodash/stubTrue.js +18 -0
- package/node_modules/lodash/subtract.js +22 -0
- package/node_modules/lodash/sum.js +24 -0
- package/node_modules/lodash/sumBy.js +33 -0
- package/node_modules/lodash/tail.js +22 -0
- package/node_modules/lodash/take.js +37 -0
- package/node_modules/lodash/takeRight.js +39 -0
- package/node_modules/lodash/takeRightWhile.js +45 -0
- package/node_modules/lodash/takeWhile.js +45 -0
- package/node_modules/lodash/tap.js +29 -0
- package/node_modules/lodash/template.js +272 -0
- package/node_modules/lodash/templateSettings.js +67 -0
- package/node_modules/lodash/throttle.js +69 -0
- package/node_modules/lodash/thru.js +28 -0
- package/node_modules/lodash/times.js +51 -0
- package/node_modules/lodash/toArray.js +58 -0
- package/node_modules/lodash/toFinite.js +42 -0
- package/node_modules/lodash/toInteger.js +36 -0
- package/node_modules/lodash/toIterator.js +23 -0
- package/node_modules/lodash/toJSON.js +1 -0
- package/node_modules/lodash/toLength.js +38 -0
- package/node_modules/lodash/toLower.js +28 -0
- package/node_modules/lodash/toNumber.js +64 -0
- package/node_modules/lodash/toPairs.js +30 -0
- package/node_modules/lodash/toPairsIn.js +30 -0
- package/node_modules/lodash/toPath.js +33 -0
- package/node_modules/lodash/toPlainObject.js +32 -0
- package/node_modules/lodash/toSafeInteger.js +37 -0
- package/node_modules/lodash/toString.js +28 -0
- package/node_modules/lodash/toUpper.js +28 -0
- package/node_modules/lodash/transform.js +65 -0
- package/node_modules/lodash/trim.js +47 -0
- package/node_modules/lodash/trimEnd.js +41 -0
- package/node_modules/lodash/trimStart.js +43 -0
- package/node_modules/lodash/truncate.js +111 -0
- package/node_modules/lodash/unary.js +22 -0
- package/node_modules/lodash/unescape.js +34 -0
- package/node_modules/lodash/union.js +26 -0
- package/node_modules/lodash/unionBy.js +39 -0
- package/node_modules/lodash/unionWith.js +34 -0
- package/node_modules/lodash/uniq.js +25 -0
- package/node_modules/lodash/uniqBy.js +31 -0
- package/node_modules/lodash/uniqWith.js +28 -0
- package/node_modules/lodash/uniqueId.js +28 -0
- package/node_modules/lodash/unset.js +34 -0
- package/node_modules/lodash/unzip.js +45 -0
- package/node_modules/lodash/unzipWith.js +39 -0
- package/node_modules/lodash/update.js +35 -0
- package/node_modules/lodash/updateWith.js +33 -0
- package/node_modules/lodash/upperCase.js +27 -0
- package/node_modules/lodash/upperFirst.js +22 -0
- package/node_modules/lodash/util.js +34 -0
- package/node_modules/lodash/value.js +1 -0
- package/node_modules/lodash/valueOf.js +1 -0
- package/node_modules/lodash/values.js +34 -0
- package/node_modules/lodash/valuesIn.js +32 -0
- package/node_modules/lodash/without.js +31 -0
- package/node_modules/lodash/words.js +35 -0
- package/node_modules/lodash/wrap.js +30 -0
- package/node_modules/lodash/wrapperAt.js +48 -0
- package/node_modules/lodash/wrapperChain.js +34 -0
- package/node_modules/lodash/wrapperLodash.js +147 -0
- package/node_modules/lodash/wrapperReverse.js +44 -0
- package/node_modules/lodash/wrapperValue.js +21 -0
- package/node_modules/lodash/xor.js +28 -0
- package/node_modules/lodash/xorBy.js +39 -0
- package/node_modules/lodash/xorWith.js +34 -0
- package/node_modules/lodash/zip.js +22 -0
- package/node_modules/lodash/zipObject.js +24 -0
- package/node_modules/lodash/zipObjectDeep.js +23 -0
- package/node_modules/lodash/zipWith.js +32 -0
- package/node_modules/lodash.get/LICENSE +47 -0
- package/node_modules/lodash.get/README.md +18 -0
- package/node_modules/lodash.get/index.js +931 -0
- package/node_modules/lodash.get/package.json +72 -0
- package/node_modules/lru-cache/LICENSE +15 -0
- package/node_modules/lru-cache/README.md +166 -0
- package/node_modules/lru-cache/index.js +334 -0
- package/node_modules/lru-cache/package.json +72 -0
- package/node_modules/make-dir/index.d.ts +66 -0
- package/node_modules/make-dir/index.js +156 -0
- package/node_modules/make-dir/license +9 -0
- package/node_modules/make-dir/node_modules/semver/CHANGELOG.md +70 -0
- package/node_modules/make-dir/node_modules/semver/LICENSE +15 -0
- package/node_modules/make-dir/node_modules/semver/README.md +443 -0
- package/node_modules/make-dir/node_modules/semver/bin/semver.js +174 -0
- package/node_modules/make-dir/node_modules/semver/package.json +63 -0
- package/node_modules/make-dir/node_modules/semver/range.bnf +16 -0
- package/node_modules/make-dir/node_modules/semver/semver.js +1596 -0
- package/node_modules/make-dir/package.json +94 -0
- package/node_modules/make-dir/readme.md +125 -0
- package/node_modules/maplex/README.md +31 -0
- package/node_modules/maplex/maplex.js +116 -0
- package/node_modules/maplex/package-lock.json.2349981881 +2125 -0
- package/node_modules/maplex/package.json +56 -0
- package/node_modules/maplex/test.js +43 -0
- package/node_modules/methods/HISTORY.md +29 -0
- package/node_modules/methods/LICENSE +24 -0
- package/node_modules/methods/README.md +51 -0
- package/node_modules/methods/index.js +69 -0
- package/node_modules/methods/package.json +82 -0
- package/node_modules/mime/CHANGELOG.md +296 -0
- package/node_modules/mime/LICENSE +21 -0
- package/node_modules/mime/Mime.js +97 -0
- package/node_modules/mime/README.md +187 -0
- package/node_modules/mime/cli.js +46 -0
- package/node_modules/mime/index.js +4 -0
- package/node_modules/mime/lite.js +4 -0
- package/node_modules/mime/package.json +84 -0
- package/node_modules/mime/types/other.js +1 -0
- package/node_modules/mime/types/standard.js +1 -0
- package/node_modules/mime-db/HISTORY.md +507 -0
- package/node_modules/mime-db/LICENSE +23 -0
- package/node_modules/mime-db/README.md +100 -0
- package/node_modules/mime-db/db.json +8519 -0
- package/node_modules/mime-db/index.js +12 -0
- package/node_modules/mime-db/package.json +106 -0
- package/node_modules/mime-types/HISTORY.md +397 -0
- package/node_modules/mime-types/LICENSE +23 -0
- package/node_modules/mime-types/README.md +113 -0
- package/node_modules/mime-types/index.js +188 -0
- package/node_modules/mime-types/package.json +92 -0
- package/node_modules/mimic-response/index.d.ts +17 -0
- package/node_modules/mimic-response/index.js +38 -0
- package/node_modules/mimic-response/license +9 -0
- package/node_modules/mimic-response/package.json +77 -0
- package/node_modules/mimic-response/readme.md +57 -0
- package/node_modules/minimatch/LICENSE +15 -0
- package/node_modules/minimatch/README.md +230 -0
- package/node_modules/minimatch/minimatch.js +947 -0
- package/node_modules/minimatch/package.json +73 -0
- package/node_modules/minipass/LICENSE +15 -0
- package/node_modules/minipass/README.md +728 -0
- package/node_modules/minipass/index.d.ts +149 -0
- package/node_modules/minipass/index.js +649 -0
- package/node_modules/minipass/package.json +93 -0
- package/node_modules/minizlib/LICENSE +26 -0
- package/node_modules/minizlib/README.md +60 -0
- package/node_modules/minizlib/constants.js +115 -0
- package/node_modules/minizlib/index.js +348 -0
- package/node_modules/minizlib/package.json +78 -0
- package/node_modules/mkdirp/CHANGELOG.md +15 -0
- package/node_modules/mkdirp/LICENSE +21 -0
- package/node_modules/mkdirp/bin/cmd.js +68 -0
- package/node_modules/mkdirp/index.js +31 -0
- package/node_modules/mkdirp/lib/find-made.js +29 -0
- package/node_modules/mkdirp/lib/mkdirp-manual.js +64 -0
- package/node_modules/mkdirp/lib/mkdirp-native.js +39 -0
- package/node_modules/mkdirp/lib/opts-arg.js +23 -0
- package/node_modules/mkdirp/lib/path-arg.js +29 -0
- package/node_modules/mkdirp/lib/use-native.js +10 -0
- package/node_modules/mkdirp/package.json +78 -0
- package/node_modules/mkdirp/readme.markdown +266 -0
- package/node_modules/ms/index.js +162 -0
- package/node_modules/ms/license.md +21 -0
- package/node_modules/ms/package.json +75 -0
- package/node_modules/ms/readme.md +60 -0
- package/node_modules/multi-progress/.gitattributes +17 -0
- package/node_modules/multi-progress/CHANGELOG.md +56 -0
- package/node_modules/multi-progress/LICENSE.txt +21 -0
- package/node_modules/multi-progress/multi-progress.js +98 -0
- package/node_modules/multi-progress/package.json +58 -0
- package/node_modules/multi-progress/readme.md +33 -0
- package/node_modules/nan/CHANGELOG.md +545 -0
- package/node_modules/nan/LICENSE.md +9 -0
- package/node_modules/nan/README.md +456 -0
- package/node_modules/nan/doc/asyncworker.md +146 -0
- package/node_modules/nan/doc/buffers.md +54 -0
- package/node_modules/nan/doc/callback.md +76 -0
- package/node_modules/nan/doc/converters.md +41 -0
- package/node_modules/nan/doc/errors.md +226 -0
- package/node_modules/nan/doc/json.md +62 -0
- package/node_modules/nan/doc/maybe_types.md +583 -0
- package/node_modules/nan/doc/methods.md +664 -0
- package/node_modules/nan/doc/new.md +147 -0
- package/node_modules/nan/doc/node_misc.md +123 -0
- package/node_modules/nan/doc/object_wrappers.md +263 -0
- package/node_modules/nan/doc/persistent.md +296 -0
- package/node_modules/nan/doc/scopes.md +73 -0
- package/node_modules/nan/doc/script.md +58 -0
- package/node_modules/nan/doc/string_bytes.md +62 -0
- package/node_modules/nan/doc/v8_internals.md +199 -0
- package/node_modules/nan/doc/v8_misc.md +85 -0
- package/node_modules/nan/include_dirs.js +1 -0
- package/node_modules/nan/nan.h +2909 -0
- package/node_modules/nan/nan_callbacks.h +88 -0
- package/node_modules/nan/nan_callbacks_12_inl.h +514 -0
- package/node_modules/nan/nan_callbacks_pre_12_inl.h +520 -0
- package/node_modules/nan/nan_converters.h +72 -0
- package/node_modules/nan/nan_converters_43_inl.h +68 -0
- package/node_modules/nan/nan_converters_pre_43_inl.h +42 -0
- package/node_modules/nan/nan_define_own_property_helper.h +29 -0
- package/node_modules/nan/nan_implementation_12_inl.h +430 -0
- package/node_modules/nan/nan_implementation_pre_12_inl.h +263 -0
- package/node_modules/nan/nan_json.h +166 -0
- package/node_modules/nan/nan_maybe_43_inl.h +356 -0
- package/node_modules/nan/nan_maybe_pre_43_inl.h +268 -0
- package/node_modules/nan/nan_new.h +340 -0
- package/node_modules/nan/nan_object_wrap.h +156 -0
- package/node_modules/nan/nan_persistent_12_inl.h +132 -0
- package/node_modules/nan/nan_persistent_pre_12_inl.h +242 -0
- package/node_modules/nan/nan_private.h +73 -0
- package/node_modules/nan/nan_scriptorigin.h +76 -0
- package/node_modules/nan/nan_string_bytes.h +305 -0
- package/node_modules/nan/nan_typedarray_contents.h +96 -0
- package/node_modules/nan/nan_weak.h +437 -0
- package/node_modules/nan/package.json +101 -0
- package/node_modules/nan/tools/1to2.js +412 -0
- package/node_modules/nan/tools/README.md +14 -0
- package/node_modules/nan/tools/package.json +19 -0
- package/node_modules/node-fetch/LICENSE.md +22 -0
- package/node_modules/node-fetch/README.md +590 -0
- package/node_modules/node-fetch/browser.js +25 -0
- package/node_modules/node-fetch/lib/index.es.js +1688 -0
- package/node_modules/node-fetch/lib/index.js +1697 -0
- package/node_modules/node-fetch/lib/index.mjs +1686 -0
- package/node_modules/node-fetch/package.json +107 -0
- package/node_modules/nopt/CHANGELOG.md +58 -0
- package/node_modules/nopt/LICENSE +15 -0
- package/node_modules/nopt/README.md +213 -0
- package/node_modules/nopt/bin/nopt.js +54 -0
- package/node_modules/nopt/lib/nopt.js +441 -0
- package/node_modules/nopt/package.json +70 -0
- package/node_modules/normalize-path/LICENSE +21 -0
- package/node_modules/normalize-path/README.md +127 -0
- package/node_modules/normalize-path/index.js +35 -0
- package/node_modules/normalize-path/package.json +119 -0
- package/node_modules/npmlog/LICENSE +15 -0
- package/node_modules/npmlog/README.md +216 -0
- package/node_modules/npmlog/log.js +403 -0
- package/node_modules/npmlog/package.json +69 -0
- package/node_modules/object-assign/index.js +90 -0
- package/node_modules/object-assign/license +21 -0
- package/node_modules/object-assign/package.json +77 -0
- package/node_modules/object-assign/readme.md +61 -0
- package/node_modules/object-inspect/.eslintrc +53 -0
- package/node_modules/object-inspect/.github/FUNDING.yml +12 -0
- package/node_modules/object-inspect/.nycrc +13 -0
- package/node_modules/object-inspect/CHANGELOG.md +360 -0
- package/node_modules/object-inspect/LICENSE +21 -0
- package/node_modules/object-inspect/example/all.js +23 -0
- package/node_modules/object-inspect/example/circular.js +6 -0
- package/node_modules/object-inspect/example/fn.js +5 -0
- package/node_modules/object-inspect/example/inspect.js +10 -0
- package/node_modules/object-inspect/index.js +512 -0
- package/node_modules/object-inspect/package-support.json +20 -0
- package/node_modules/object-inspect/package.json +126 -0
- package/node_modules/object-inspect/readme.markdown +86 -0
- package/node_modules/object-inspect/test/bigint.js +58 -0
- package/node_modules/object-inspect/test/browser/dom.js +15 -0
- package/node_modules/object-inspect/test/circular.js +16 -0
- package/node_modules/object-inspect/test/deep.js +12 -0
- package/node_modules/object-inspect/test/element.js +53 -0
- package/node_modules/object-inspect/test/err.js +48 -0
- package/node_modules/object-inspect/test/fakes.js +29 -0
- package/node_modules/object-inspect/test/fn.js +76 -0
- package/node_modules/object-inspect/test/has.js +15 -0
- package/node_modules/object-inspect/test/holes.js +15 -0
- package/node_modules/object-inspect/test/indent-option.js +271 -0
- package/node_modules/object-inspect/test/inspect.js +139 -0
- package/node_modules/object-inspect/test/lowbyte.js +12 -0
- package/node_modules/object-inspect/test/number.js +58 -0
- package/node_modules/object-inspect/test/quoteStyle.js +17 -0
- package/node_modules/object-inspect/test/toStringTag.js +40 -0
- package/node_modules/object-inspect/test/undef.js +12 -0
- package/node_modules/object-inspect/test/values.js +211 -0
- package/node_modules/object-inspect/test-core-js.js +26 -0
- package/node_modules/object-inspect/util.inspect.js +1 -0
- package/node_modules/once/LICENSE +15 -0
- package/node_modules/once/README.md +79 -0
- package/node_modules/once/once.js +42 -0
- package/node_modules/once/package.json +74 -0
- package/node_modules/p-finally/index.js +15 -0
- package/node_modules/p-finally/license +21 -0
- package/node_modules/p-finally/package.json +77 -0
- package/node_modules/p-finally/readme.md +47 -0
- package/node_modules/p-retry/index.js +52 -0
- package/node_modules/p-retry/license +9 -0
- package/node_modules/p-retry/package.json +83 -0
- package/node_modules/p-retry/readme.md +109 -0
- package/node_modules/p-timeout/index.d.ts +72 -0
- package/node_modules/p-timeout/index.js +57 -0
- package/node_modules/p-timeout/license +9 -0
- package/node_modules/p-timeout/package.json +80 -0
- package/node_modules/p-timeout/readme.md +87 -0
- package/node_modules/pako/CHANGELOG.md +164 -0
- package/node_modules/pako/LICENSE +21 -0
- package/node_modules/pako/README.md +191 -0
- package/node_modules/pako/dist/pako.js +6818 -0
- package/node_modules/pako/dist/pako.min.js +1 -0
- package/node_modules/pako/dist/pako_deflate.js +3997 -0
- package/node_modules/pako/dist/pako_deflate.min.js +1 -0
- package/node_modules/pako/dist/pako_inflate.js +3300 -0
- package/node_modules/pako/dist/pako_inflate.min.js +1 -0
- package/node_modules/pako/index.js +14 -0
- package/node_modules/pako/lib/deflate.js +400 -0
- package/node_modules/pako/lib/inflate.js +423 -0
- package/node_modules/pako/lib/utils/common.js +105 -0
- package/node_modules/pako/lib/utils/strings.js +187 -0
- package/node_modules/pako/lib/zlib/README +59 -0
- package/node_modules/pako/lib/zlib/adler32.js +51 -0
- package/node_modules/pako/lib/zlib/constants.js +68 -0
- package/node_modules/pako/lib/zlib/crc32.js +59 -0
- package/node_modules/pako/lib/zlib/deflate.js +1874 -0
- package/node_modules/pako/lib/zlib/gzheader.js +58 -0
- package/node_modules/pako/lib/zlib/inffast.js +345 -0
- package/node_modules/pako/lib/zlib/inflate.js +1556 -0
- package/node_modules/pako/lib/zlib/inftrees.js +343 -0
- package/node_modules/pako/lib/zlib/messages.js +32 -0
- package/node_modules/pako/lib/zlib/trees.js +1222 -0
- package/node_modules/pako/lib/zlib/zstream.js +47 -0
- package/node_modules/pako/package.json +94 -0
- package/node_modules/parse-listing/..gitignore.un~ +0 -0
- package/node_modules/parse-listing/..travis.yml.un~ +0 -0
- package/node_modules/parse-listing/.Makefile.un~ +0 -0
- package/node_modules/parse-listing/.README.md.un~ +0 -0
- package/node_modules/parse-listing/.npmignore +4 -0
- package/node_modules/parse-listing/.package.json.un~ +0 -0
- package/node_modules/parse-listing/.parser.js.un~ +0 -0
- package/node_modules/parse-listing/.parset_test.js.un~ +0 -0
- package/node_modules/parse-listing/.travis.yml +7 -0
- package/node_modules/parse-listing/Makefile +30 -0
- package/node_modules/parse-listing/README.md +115 -0
- package/node_modules/parse-listing/_site/Makefile +30 -0
- package/node_modules/parse-listing/_site/README.md +115 -0
- package/node_modules/parse-listing/_site/package.json +41 -0
- package/node_modules/parse-listing/_site/src/ftp-parser.js +456 -0
- package/node_modules/parse-listing/_site/src/parser.js +338 -0
- package/node_modules/parse-listing/_site/test/parser.test.js +707 -0
- package/node_modules/parse-listing/package.json +74 -0
- package/node_modules/parse-listing/src/.parser.js.un~ +0 -0
- package/node_modules/parse-listing/src/ftp-parser.js +456 -0
- package/node_modules/parse-listing/src/parser.js +339 -0
- package/node_modules/parse-listing/test/.parser.test.js.un~ +0 -0
- package/node_modules/parse-listing/test/.parser_test.js.un~ +0 -0
- package/node_modules/parse-listing/test/parser.test.js +714 -0
- package/node_modules/path-is-absolute/index.js +20 -0
- package/node_modules/path-is-absolute/license +21 -0
- package/node_modules/path-is-absolute/package.json +78 -0
- package/node_modules/path-is-absolute/readme.md +59 -0
- package/node_modules/picomatch/CHANGELOG.md +136 -0
- package/node_modules/picomatch/LICENSE +21 -0
- package/node_modules/picomatch/README.md +708 -0
- package/node_modules/picomatch/index.js +3 -0
- package/node_modules/picomatch/lib/constants.js +179 -0
- package/node_modules/picomatch/lib/parse.js +1091 -0
- package/node_modules/picomatch/lib/picomatch.js +342 -0
- package/node_modules/picomatch/lib/scan.js +391 -0
- package/node_modules/picomatch/lib/utils.js +64 -0
- package/node_modules/picomatch/package.json +117 -0
- package/node_modules/process-nextick-args/index.js +45 -0
- package/node_modules/process-nextick-args/license.md +19 -0
- package/node_modules/process-nextick-args/package.json +53 -0
- package/node_modules/process-nextick-args/readme.md +18 -0
- package/node_modules/progress/CHANGELOG.md +115 -0
- package/node_modules/progress/LICENSE +22 -0
- package/node_modules/progress/Makefile +8 -0
- package/node_modules/progress/Readme.md +146 -0
- package/node_modules/progress/index.js +1 -0
- package/node_modules/progress/lib/node-progress.js +236 -0
- package/node_modules/progress/package.json +74 -0
- package/node_modules/qs/.editorconfig +43 -0
- package/node_modules/qs/.eslintrc +38 -0
- package/node_modules/qs/.github/FUNDING.yml +12 -0
- package/node_modules/qs/.nycrc +13 -0
- package/node_modules/qs/CHANGELOG.md +546 -0
- package/node_modules/qs/LICENSE.md +29 -0
- package/node_modules/qs/README.md +625 -0
- package/node_modules/qs/dist/qs.js +2054 -0
- package/node_modules/qs/lib/formats.js +23 -0
- package/node_modules/qs/lib/index.js +11 -0
- package/node_modules/qs/lib/parse.js +263 -0
- package/node_modules/qs/lib/stringify.js +326 -0
- package/node_modules/qs/lib/utils.js +252 -0
- package/node_modules/qs/package.json +108 -0
- package/node_modules/qs/test/parse.js +855 -0
- package/node_modules/qs/test/stringify.js +909 -0
- package/node_modules/qs/test/utils.js +136 -0
- package/node_modules/readable-stream/.travis.yml +34 -0
- package/node_modules/readable-stream/CONTRIBUTING.md +38 -0
- package/node_modules/readable-stream/GOVERNANCE.md +136 -0
- package/node_modules/readable-stream/LICENSE +47 -0
- package/node_modules/readable-stream/README.md +58 -0
- package/node_modules/readable-stream/doc/wg-meetings/2015-01-30.md +60 -0
- package/node_modules/readable-stream/duplex-browser.js +1 -0
- package/node_modules/readable-stream/duplex.js +1 -0
- package/node_modules/readable-stream/lib/_stream_duplex.js +131 -0
- package/node_modules/readable-stream/lib/_stream_passthrough.js +47 -0
- package/node_modules/readable-stream/lib/_stream_readable.js +1019 -0
- package/node_modules/readable-stream/lib/_stream_transform.js +214 -0
- package/node_modules/readable-stream/lib/_stream_writable.js +687 -0
- package/node_modules/readable-stream/lib/internal/streams/BufferList.js +79 -0
- package/node_modules/readable-stream/lib/internal/streams/destroy.js +74 -0
- package/node_modules/readable-stream/lib/internal/streams/stream-browser.js +1 -0
- package/node_modules/readable-stream/lib/internal/streams/stream.js +1 -0
- package/node_modules/readable-stream/package.json +86 -0
- package/node_modules/readable-stream/passthrough.js +1 -0
- package/node_modules/readable-stream/readable-browser.js +7 -0
- package/node_modules/readable-stream/readable.js +19 -0
- package/node_modules/readable-stream/transform.js +1 -0
- package/node_modules/readable-stream/writable-browser.js +1 -0
- package/node_modules/readable-stream/writable.js +8 -0
- package/node_modules/readdirp/LICENSE +21 -0
- package/node_modules/readdirp/README.md +122 -0
- package/node_modules/readdirp/index.d.ts +43 -0
- package/node_modules/readdirp/index.js +287 -0
- package/node_modules/readdirp/package.json +162 -0
- package/node_modules/require-directory/.jshintrc +67 -0
- package/node_modules/require-directory/.npmignore +1 -0
- package/node_modules/require-directory/.travis.yml +3 -0
- package/node_modules/require-directory/LICENSE +22 -0
- package/node_modules/require-directory/README.markdown +184 -0
- package/node_modules/require-directory/index.js +86 -0
- package/node_modules/require-directory/package.json +72 -0
- package/node_modules/retry/.npmignore +3 -0
- package/node_modules/retry/.travis.yml +15 -0
- package/node_modules/retry/License +21 -0
- package/node_modules/retry/Makefile +18 -0
- package/node_modules/retry/README.md +227 -0
- package/node_modules/retry/equation.gif +0 -0
- package/node_modules/retry/example/dns.js +31 -0
- package/node_modules/retry/example/stop.js +40 -0
- package/node_modules/retry/index.js +1 -0
- package/node_modules/retry/lib/retry.js +100 -0
- package/node_modules/retry/lib/retry_operation.js +158 -0
- package/node_modules/retry/package.json +67 -0
- package/node_modules/retry/test/common.js +10 -0
- package/node_modules/retry/test/integration/test-forever.js +24 -0
- package/node_modules/retry/test/integration/test-retry-operation.js +258 -0
- package/node_modules/retry/test/integration/test-retry-wrap.js +101 -0
- package/node_modules/retry/test/integration/test-timeouts.js +69 -0
- package/node_modules/rimraf/CHANGELOG.md +65 -0
- package/node_modules/rimraf/LICENSE +15 -0
- package/node_modules/rimraf/README.md +101 -0
- package/node_modules/rimraf/bin.js +68 -0
- package/node_modules/rimraf/package.json +74 -0
- package/node_modules/rimraf/rimraf.js +360 -0
- package/node_modules/rw/.eslintrc +5 -0
- package/node_modules/rw/.npmignore +3 -0
- package/node_modules/rw/LICENSE +26 -0
- package/node_modules/rw/README.md +120 -0
- package/node_modules/rw/index.js +5 -0
- package/node_modules/rw/lib/rw/dash.js +14 -0
- package/node_modules/rw/lib/rw/decode.js +23 -0
- package/node_modules/rw/lib/rw/encode.js +7 -0
- package/node_modules/rw/lib/rw/read-file-sync.js +29 -0
- package/node_modules/rw/lib/rw/read-file.js +23 -0
- package/node_modules/rw/lib/rw/write-file-sync.js +32 -0
- package/node_modules/rw/lib/rw/write-file.js +22 -0
- package/node_modules/rw/package.json +63 -0
- package/node_modules/rw/test/cat-async +10 -0
- package/node_modules/rw/test/cat-sync +5 -0
- package/node_modules/rw/test/encode-object-async +7 -0
- package/node_modules/rw/test/encode-object-sync +5 -0
- package/node_modules/rw/test/encode-string-async +7 -0
- package/node_modules/rw/test/encode-string-sync +5 -0
- package/node_modules/rw/test/encoding-async +42 -0
- package/node_modules/rw/test/encoding-sync +20 -0
- package/node_modules/rw/test/run-tests +53 -0
- package/node_modules/rw/test/utf8.txt +1 -0
- package/node_modules/rw/test/wc-async +8 -0
- package/node_modules/rw/test/wc-sync +5 -0
- package/node_modules/rw/test/write-async +7 -0
- package/node_modules/rw/test/write-sync +5 -0
- package/node_modules/safe-buffer/LICENSE +21 -0
- package/node_modules/safe-buffer/README.md +584 -0
- package/node_modules/safe-buffer/index.d.ts +187 -0
- package/node_modules/safe-buffer/index.js +62 -0
- package/node_modules/safe-buffer/package.json +69 -0
- package/node_modules/safer-buffer/LICENSE +21 -0
- package/node_modules/safer-buffer/Porting-Buffer.md +268 -0
- package/node_modules/safer-buffer/Readme.md +156 -0
- package/node_modules/safer-buffer/dangerous.js +58 -0
- package/node_modules/safer-buffer/package.json +63 -0
- package/node_modules/safer-buffer/safer.js +77 -0
- package/node_modules/safer-buffer/tests.js +406 -0
- package/node_modules/semver/LICENSE +15 -0
- package/node_modules/semver/README.md +568 -0
- package/node_modules/semver/bin/semver.js +183 -0
- package/node_modules/semver/classes/comparator.js +136 -0
- package/node_modules/semver/classes/index.js +5 -0
- package/node_modules/semver/classes/range.js +519 -0
- package/node_modules/semver/classes/semver.js +287 -0
- package/node_modules/semver/functions/clean.js +6 -0
- package/node_modules/semver/functions/cmp.js +52 -0
- package/node_modules/semver/functions/coerce.js +52 -0
- package/node_modules/semver/functions/compare-build.js +7 -0
- package/node_modules/semver/functions/compare-loose.js +3 -0
- package/node_modules/semver/functions/compare.js +5 -0
- package/node_modules/semver/functions/diff.js +23 -0
- package/node_modules/semver/functions/eq.js +3 -0
- package/node_modules/semver/functions/gt.js +3 -0
- package/node_modules/semver/functions/gte.js +3 -0
- package/node_modules/semver/functions/inc.js +18 -0
- package/node_modules/semver/functions/lt.js +3 -0
- package/node_modules/semver/functions/lte.js +3 -0
- package/node_modules/semver/functions/major.js +3 -0
- package/node_modules/semver/functions/minor.js +3 -0
- package/node_modules/semver/functions/neq.js +3 -0
- package/node_modules/semver/functions/parse.js +33 -0
- package/node_modules/semver/functions/patch.js +3 -0
- package/node_modules/semver/functions/prerelease.js +6 -0
- package/node_modules/semver/functions/rcompare.js +3 -0
- package/node_modules/semver/functions/rsort.js +3 -0
- package/node_modules/semver/functions/satisfies.js +10 -0
- package/node_modules/semver/functions/sort.js +3 -0
- package/node_modules/semver/functions/valid.js +6 -0
- package/node_modules/semver/index.js +48 -0
- package/node_modules/semver/internal/constants.js +17 -0
- package/node_modules/semver/internal/debug.js +9 -0
- package/node_modules/semver/internal/identifiers.js +23 -0
- package/node_modules/semver/internal/parse-options.js +11 -0
- package/node_modules/semver/internal/re.js +182 -0
- package/node_modules/semver/package.json +113 -0
- package/node_modules/semver/preload.js +2 -0
- package/node_modules/semver/range.bnf +16 -0
- package/node_modules/semver/ranges/gtr.js +4 -0
- package/node_modules/semver/ranges/intersects.js +7 -0
- package/node_modules/semver/ranges/ltr.js +4 -0
- package/node_modules/semver/ranges/max-satisfying.js +25 -0
- package/node_modules/semver/ranges/min-satisfying.js +24 -0
- package/node_modules/semver/ranges/min-version.js +61 -0
- package/node_modules/semver/ranges/outside.js +80 -0
- package/node_modules/semver/ranges/simplify.js +47 -0
- package/node_modules/semver/ranges/subset.js +244 -0
- package/node_modules/semver/ranges/to-comparators.js +8 -0
- package/node_modules/semver/ranges/valid.js +11 -0
- package/node_modules/set-blocking/CHANGELOG.md +26 -0
- package/node_modules/set-blocking/LICENSE.txt +14 -0
- package/node_modules/set-blocking/README.md +31 -0
- package/node_modules/set-blocking/index.js +7 -0
- package/node_modules/set-blocking/package.json +73 -0
- package/node_modules/setimmediate/LICENSE.txt +20 -0
- package/node_modules/setimmediate/package.json +77 -0
- package/node_modules/setimmediate/setImmediate.js +186 -0
- package/node_modules/side-channel/.eslintignore +1 -0
- package/node_modules/side-channel/.eslintrc +11 -0
- package/node_modules/side-channel/.github/FUNDING.yml +12 -0
- package/node_modules/side-channel/.nycrc +13 -0
- package/node_modules/side-channel/CHANGELOG.md +65 -0
- package/node_modules/side-channel/LICENSE +21 -0
- package/node_modules/side-channel/README.md +2 -0
- package/node_modules/side-channel/index.js +124 -0
- package/node_modules/side-channel/package.json +99 -0
- package/node_modules/side-channel/test/index.js +78 -0
- package/node_modules/sift/MIT-LICENSE.txt +20 -0
- package/node_modules/sift/README.md +465 -0
- package/node_modules/sift/es/index.js +626 -0
- package/node_modules/sift/es/index.js.map +1 -0
- package/node_modules/sift/es5m/index.js +729 -0
- package/node_modules/sift/es5m/index.js.map +1 -0
- package/node_modules/sift/index.d.ts +4 -0
- package/node_modules/sift/index.js +4 -0
- package/node_modules/sift/lib/core.d.ts +119 -0
- package/node_modules/sift/lib/index.d.ts +6 -0
- package/node_modules/sift/lib/index.js +766 -0
- package/node_modules/sift/lib/index.js.map +1 -0
- package/node_modules/sift/lib/operations.d.ts +88 -0
- package/node_modules/sift/lib/utils.d.ts +9 -0
- package/node_modules/sift/package.json +98 -0
- package/node_modules/sift/sift.csp.min.js +763 -0
- package/node_modules/sift/sift.csp.min.js.map +1 -0
- package/node_modules/sift/sift.min.js +16 -0
- package/node_modules/sift/sift.min.js.map +1 -0
- package/node_modules/sift/src/core.d.ts +123 -0
- package/node_modules/sift/src/core.js +270 -0
- package/node_modules/sift/src/core.js.map +1 -0
- package/node_modules/sift/src/core.ts +479 -0
- package/node_modules/sift/src/index.d.ts +6 -0
- package/node_modules/sift/src/index.js +35 -0
- package/node_modules/sift/src/index.js.map +1 -0
- package/node_modules/sift/src/index.ts +42 -0
- package/node_modules/sift/src/operations.d.ts +85 -0
- package/node_modules/sift/src/operations.js +276 -0
- package/node_modules/sift/src/operations.js.map +1 -0
- package/node_modules/sift/src/operations.ts +411 -0
- package/node_modules/sift/src/utils.d.ts +9 -0
- package/node_modules/sift/src/utils.js +70 -0
- package/node_modules/sift/src/utils.js.map +1 -0
- package/node_modules/sift/src/utils.ts +68 -0
- package/node_modules/signal-exit/LICENSE.txt +16 -0
- package/node_modules/signal-exit/README.md +39 -0
- package/node_modules/signal-exit/index.js +202 -0
- package/node_modules/signal-exit/package.json +71 -0
- package/node_modules/signal-exit/signals.js +53 -0
- package/node_modules/simple-concat/.travis.yml +3 -0
- package/node_modules/simple-concat/LICENSE +20 -0
- package/node_modules/simple-concat/README.md +44 -0
- package/node_modules/simple-concat/index.js +15 -0
- package/node_modules/simple-concat/package.json +75 -0
- package/node_modules/simple-concat/test/basic.js +41 -0
- package/node_modules/simple-get/LICENSE +20 -0
- package/node_modules/simple-get/README.md +319 -0
- package/node_modules/simple-get/index.js +107 -0
- package/node_modules/simple-get/package.json +81 -0
- package/node_modules/simple-swizzle/LICENSE +21 -0
- package/node_modules/simple-swizzle/README.md +39 -0
- package/node_modules/simple-swizzle/index.js +29 -0
- package/node_modules/simple-swizzle/node_modules/is-arrayish/LICENSE +21 -0
- package/node_modules/simple-swizzle/node_modules/is-arrayish/README.md +16 -0
- package/node_modules/simple-swizzle/node_modules/is-arrayish/index.js +9 -0
- package/node_modules/simple-swizzle/node_modules/is-arrayish/package.json +80 -0
- package/node_modules/simple-swizzle/node_modules/is-arrayish/yarn-error.log +1443 -0
- package/node_modules/simple-swizzle/package.json +74 -0
- package/node_modules/split/.npmignore +3 -0
- package/node_modules/split/.travis.yml +3 -0
- package/node_modules/split/LICENCE +22 -0
- package/node_modules/split/examples/pretty.js +26 -0
- package/node_modules/split/index.js +63 -0
- package/node_modules/split/package.json +65 -0
- package/node_modules/split/readme.markdown +72 -0
- package/node_modules/split/test/options.asynct.js +46 -0
- package/node_modules/split/test/partitioned_unicode.js +34 -0
- package/node_modules/split/test/split.asynct.js +137 -0
- package/node_modules/split/test/try_catch.asynct.js +51 -0
- package/node_modules/strangler/.travis.yml +21 -0
- package/node_modules/strangler/README.md +191 -0
- package/node_modules/strangler/package-lock.json.2408204802 +289 -0
- package/node_modules/strangler/package.json +69 -0
- package/node_modules/strangler/strangler.js +272 -0
- package/node_modules/strangler/test-utils.js +52 -0
- package/node_modules/strangler/test.js +186 -0
- package/node_modules/stream-combiner/.npmignore +3 -0
- package/node_modules/stream-combiner/.travis.yml +4 -0
- package/node_modules/stream-combiner/LICENSE +22 -0
- package/node_modules/stream-combiner/README.md +55 -0
- package/node_modules/stream-combiner/index.js +45 -0
- package/node_modules/stream-combiner/package.json +59 -0
- package/node_modules/stream-combiner/test/index.js +65 -0
- package/node_modules/stream-shift/.travis.yml +6 -0
- package/node_modules/stream-shift/LICENSE +21 -0
- package/node_modules/stream-shift/README.md +25 -0
- package/node_modules/stream-shift/index.js +20 -0
- package/node_modules/stream-shift/package.json +56 -0
- package/node_modules/stream-shift/test.js +48 -0
- package/node_modules/string-tools/.npmignore +2 -0
- package/node_modules/string-tools/.travis.yml +5 -0
- package/node_modules/string-tools/LICENSE +21 -0
- package/node_modules/string-tools/README.md +101 -0
- package/node_modules/string-tools/jsdoc2md/README.hbs +10 -0
- package/node_modules/string-tools/lib/string-tools.js +119 -0
- package/node_modules/string-tools/package.json +62 -0
- package/node_modules/string-tools/test/test.js +38 -0
- package/node_modules/string-width/index.d.ts +29 -0
- package/node_modules/string-width/index.js +47 -0
- package/node_modules/string-width/license +9 -0
- package/node_modules/string-width/package.json +98 -0
- package/node_modules/string-width/readme.md +50 -0
- package/node_modules/string_decoder/.travis.yml +50 -0
- package/node_modules/string_decoder/LICENSE +48 -0
- package/node_modules/string_decoder/README.md +47 -0
- package/node_modules/string_decoder/lib/string_decoder.js +296 -0
- package/node_modules/string_decoder/package.json +64 -0
- package/node_modules/strip-ansi/index.d.ts +17 -0
- package/node_modules/strip-ansi/index.js +4 -0
- package/node_modules/strip-ansi/license +9 -0
- package/node_modules/strip-ansi/package.json +95 -0
- package/node_modules/strip-ansi/readme.md +46 -0
- package/node_modules/superagent/.browserslistrc +5 -0
- package/node_modules/superagent/.dist.babelrc +10 -0
- package/node_modules/superagent/.dist.eslintrc +35 -0
- package/node_modules/superagent/.editorconfig +9 -0
- package/node_modules/superagent/.gitattributes +1 -0
- package/node_modules/superagent/.lib.babelrc +11 -0
- package/node_modules/superagent/.lib.eslintrc +24 -0
- package/node_modules/superagent/.remarkignore +3 -0
- package/node_modules/superagent/.zuul.yml +16 -0
- package/node_modules/superagent/CONTRIBUTING.md +7 -0
- package/node_modules/superagent/HISTORY.md +692 -0
- package/node_modules/superagent/LICENSE +22 -0
- package/node_modules/superagent/Makefile +60 -0
- package/node_modules/superagent/README.md +266 -0
- package/node_modules/superagent/dist/superagent.js +2418 -0
- package/node_modules/superagent/dist/superagent.min.js +1 -0
- package/node_modules/superagent/docs/head.html +11 -0
- package/node_modules/superagent/docs/images/bg.png +0 -0
- package/node_modules/superagent/docs/index.md +736 -0
- package/node_modules/superagent/docs/style.css +87 -0
- package/node_modules/superagent/docs/tail.html +36 -0
- package/node_modules/superagent/docs/test.html +5072 -0
- package/node_modules/superagent/index.html +47 -0
- package/node_modules/superagent/lib/agent-base.js +42 -0
- package/node_modules/superagent/lib/client.js +1020 -0
- package/node_modules/superagent/lib/is-object.js +17 -0
- package/node_modules/superagent/lib/node/agent.js +113 -0
- package/node_modules/superagent/lib/node/http2wrapper.js +218 -0
- package/node_modules/superagent/lib/node/index.js +1376 -0
- package/node_modules/superagent/lib/node/parsers/image.js +13 -0
- package/node_modules/superagent/lib/node/parsers/index.js +12 -0
- package/node_modules/superagent/lib/node/parsers/json.js +26 -0
- package/node_modules/superagent/lib/node/parsers/text.js +11 -0
- package/node_modules/superagent/lib/node/parsers/urlencoded.js +22 -0
- package/node_modules/superagent/lib/node/response.js +126 -0
- package/node_modules/superagent/lib/node/unzip.js +72 -0
- package/node_modules/superagent/lib/request-base.js +757 -0
- package/node_modules/superagent/lib/response-base.js +131 -0
- package/node_modules/superagent/lib/utils.js +71 -0
- package/node_modules/superagent/node_modules/form-data/License +19 -0
- package/node_modules/superagent/node_modules/form-data/README.md.bak +356 -0
- package/node_modules/superagent/node_modules/form-data/Readme.md +356 -0
- package/node_modules/superagent/node_modules/form-data/index.d.ts +62 -0
- package/node_modules/superagent/node_modules/form-data/lib/browser.js +2 -0
- package/node_modules/superagent/node_modules/form-data/lib/form_data.js +498 -0
- package/node_modules/superagent/node_modules/form-data/lib/populate.js +10 -0
- package/node_modules/superagent/node_modules/form-data/package.json +104 -0
- package/node_modules/superagent/node_modules/readable-stream/CONTRIBUTING.md +38 -0
- package/node_modules/superagent/node_modules/readable-stream/GOVERNANCE.md +136 -0
- package/node_modules/superagent/node_modules/readable-stream/LICENSE +47 -0
- package/node_modules/superagent/node_modules/readable-stream/README.md +106 -0
- package/node_modules/superagent/node_modules/readable-stream/errors-browser.js +127 -0
- package/node_modules/superagent/node_modules/readable-stream/errors.js +116 -0
- package/node_modules/superagent/node_modules/readable-stream/experimentalWarning.js +17 -0
- package/node_modules/superagent/node_modules/readable-stream/lib/_stream_duplex.js +139 -0
- package/node_modules/superagent/node_modules/readable-stream/lib/_stream_passthrough.js +39 -0
- package/node_modules/superagent/node_modules/readable-stream/lib/_stream_readable.js +1124 -0
- package/node_modules/superagent/node_modules/readable-stream/lib/_stream_transform.js +201 -0
- package/node_modules/superagent/node_modules/readable-stream/lib/_stream_writable.js +697 -0
- package/node_modules/superagent/node_modules/readable-stream/lib/internal/streams/async_iterator.js +207 -0
- package/node_modules/superagent/node_modules/readable-stream/lib/internal/streams/buffer_list.js +210 -0
- package/node_modules/superagent/node_modules/readable-stream/lib/internal/streams/destroy.js +105 -0
- package/node_modules/superagent/node_modules/readable-stream/lib/internal/streams/end-of-stream.js +104 -0
- package/node_modules/superagent/node_modules/readable-stream/lib/internal/streams/from-browser.js +3 -0
- package/node_modules/superagent/node_modules/readable-stream/lib/internal/streams/from.js +64 -0
- package/node_modules/superagent/node_modules/readable-stream/lib/internal/streams/pipeline.js +97 -0
- package/node_modules/superagent/node_modules/readable-stream/lib/internal/streams/state.js +27 -0
- package/node_modules/superagent/node_modules/readable-stream/lib/internal/streams/stream-browser.js +1 -0
- package/node_modules/superagent/node_modules/readable-stream/lib/internal/streams/stream.js +1 -0
- package/node_modules/superagent/node_modules/readable-stream/package.json +100 -0
- package/node_modules/superagent/node_modules/readable-stream/readable-browser.js +9 -0
- package/node_modules/superagent/node_modules/readable-stream/readable.js +16 -0
- package/node_modules/superagent/package.json +272 -0
- package/node_modules/tar/LICENSE +15 -0
- package/node_modules/tar/README.md +1042 -0
- package/node_modules/tar/index.js +18 -0
- package/node_modules/tar/lib/create.js +104 -0
- package/node_modules/tar/lib/extract.js +107 -0
- package/node_modules/tar/lib/get-write-flag.js +20 -0
- package/node_modules/tar/lib/header.js +288 -0
- package/node_modules/tar/lib/high-level-opt.js +29 -0
- package/node_modules/tar/lib/large-numbers.js +99 -0
- package/node_modules/tar/lib/list.js +132 -0
- package/node_modules/tar/lib/mkdir.js +213 -0
- package/node_modules/tar/lib/mode-fix.js +23 -0
- package/node_modules/tar/lib/normalize-unicode.js +11 -0
- package/node_modules/tar/lib/normalize-windows-path.js +8 -0
- package/node_modules/tar/lib/pack.js +397 -0
- package/node_modules/tar/lib/parse.js +481 -0
- package/node_modules/tar/lib/path-reservations.js +148 -0
- package/node_modules/tar/lib/pax.js +143 -0
- package/node_modules/tar/lib/read-entry.js +100 -0
- package/node_modules/tar/lib/replace.js +223 -0
- package/node_modules/tar/lib/strip-absolute-path.js +24 -0
- package/node_modules/tar/lib/strip-trailing-slashes.js +13 -0
- package/node_modules/tar/lib/types.js +44 -0
- package/node_modules/tar/lib/unpack.js +877 -0
- package/node_modules/tar/lib/update.js +36 -0
- package/node_modules/tar/lib/warn-mixin.js +21 -0
- package/node_modules/tar/lib/winchars.js +23 -0
- package/node_modules/tar/lib/write-entry.js +525 -0
- package/node_modules/tar/package.json +95 -0
- package/node_modules/through/.travis.yml +5 -0
- package/node_modules/through/LICENSE.APACHE2 +15 -0
- package/node_modules/through/LICENSE.MIT +24 -0
- package/node_modules/through/index.js +108 -0
- package/node_modules/through/package.json +73 -0
- package/node_modules/through/readme.markdown +64 -0
- package/node_modules/through/test/async.js +28 -0
- package/node_modules/through/test/auto-destroy.js +30 -0
- package/node_modules/through/test/buffering.js +71 -0
- package/node_modules/through/test/end.js +45 -0
- package/node_modules/through/test/index.js +133 -0
- package/node_modules/to-regex-range/LICENSE +21 -0
- package/node_modules/to-regex-range/README.md +305 -0
- package/node_modules/to-regex-range/index.js +288 -0
- package/node_modules/to-regex-range/package.json +128 -0
- package/node_modules/tr46/.npmignore +4 -0
- package/node_modules/tr46/index.js +193 -0
- package/node_modules/tr46/lib/.gitkeep +0 -0
- package/node_modules/tr46/lib/mappingTable.json +1 -0
- package/node_modules/tr46/package.json +62 -0
- package/node_modules/ultron/LICENSE +22 -0
- package/node_modules/ultron/README.md +113 -0
- package/node_modules/ultron/index.js +136 -0
- package/node_modules/ultron/package.json +71 -0
- package/node_modules/unorm/LICENSE.md +42 -0
- package/node_modules/unorm/README.md +118 -0
- package/node_modules/unorm/lib/unorm.js +452 -0
- package/node_modules/unorm/package.json +76 -0
- package/node_modules/util-deprecate/History.md +16 -0
- package/node_modules/util-deprecate/LICENSE +24 -0
- package/node_modules/util-deprecate/README.md +53 -0
- package/node_modules/util-deprecate/browser.js +67 -0
- package/node_modules/util-deprecate/node.js +6 -0
- package/node_modules/util-deprecate/package.json +61 -0
- package/node_modules/uuid/CHANGELOG.md +229 -0
- package/node_modules/uuid/CONTRIBUTING.md +18 -0
- package/node_modules/uuid/LICENSE.md +9 -0
- package/node_modules/uuid/README.md +505 -0
- package/node_modules/uuid/dist/bin/uuid +2 -0
- package/node_modules/uuid/dist/esm-browser/index.js +9 -0
- package/node_modules/uuid/dist/esm-browser/md5.js +215 -0
- package/node_modules/uuid/dist/esm-browser/nil.js +1 -0
- package/node_modules/uuid/dist/esm-browser/parse.js +35 -0
- package/node_modules/uuid/dist/esm-browser/regex.js +1 -0
- package/node_modules/uuid/dist/esm-browser/rng.js +19 -0
- package/node_modules/uuid/dist/esm-browser/sha1.js +96 -0
- package/node_modules/uuid/dist/esm-browser/stringify.js +30 -0
- package/node_modules/uuid/dist/esm-browser/v1.js +95 -0
- package/node_modules/uuid/dist/esm-browser/v3.js +4 -0
- package/node_modules/uuid/dist/esm-browser/v35.js +64 -0
- package/node_modules/uuid/dist/esm-browser/v4.js +24 -0
- package/node_modules/uuid/dist/esm-browser/v5.js +4 -0
- package/node_modules/uuid/dist/esm-browser/validate.js +7 -0
- package/node_modules/uuid/dist/esm-browser/version.js +11 -0
- package/node_modules/uuid/dist/esm-node/index.js +9 -0
- package/node_modules/uuid/dist/esm-node/md5.js +13 -0
- package/node_modules/uuid/dist/esm-node/nil.js +1 -0
- package/node_modules/uuid/dist/esm-node/parse.js +35 -0
- package/node_modules/uuid/dist/esm-node/regex.js +1 -0
- package/node_modules/uuid/dist/esm-node/rng.js +12 -0
- package/node_modules/uuid/dist/esm-node/sha1.js +13 -0
- package/node_modules/uuid/dist/esm-node/stringify.js +29 -0
- package/node_modules/uuid/dist/esm-node/v1.js +95 -0
- package/node_modules/uuid/dist/esm-node/v3.js +4 -0
- package/node_modules/uuid/dist/esm-node/v35.js +64 -0
- package/node_modules/uuid/dist/esm-node/v4.js +24 -0
- package/node_modules/uuid/dist/esm-node/v5.js +4 -0
- package/node_modules/uuid/dist/esm-node/validate.js +7 -0
- package/node_modules/uuid/dist/esm-node/version.js +11 -0
- package/node_modules/uuid/dist/index.js +79 -0
- package/node_modules/uuid/dist/md5-browser.js +223 -0
- package/node_modules/uuid/dist/md5.js +23 -0
- package/node_modules/uuid/dist/nil.js +8 -0
- package/node_modules/uuid/dist/parse.js +45 -0
- package/node_modules/uuid/dist/regex.js +8 -0
- package/node_modules/uuid/dist/rng-browser.js +26 -0
- package/node_modules/uuid/dist/rng.js +24 -0
- package/node_modules/uuid/dist/sha1-browser.js +104 -0
- package/node_modules/uuid/dist/sha1.js +23 -0
- package/node_modules/uuid/dist/stringify.js +39 -0
- package/node_modules/uuid/dist/umd/uuid.min.js +1 -0
- package/node_modules/uuid/dist/umd/uuidNIL.min.js +1 -0
- package/node_modules/uuid/dist/umd/uuidParse.min.js +1 -0
- package/node_modules/uuid/dist/umd/uuidStringify.min.js +1 -0
- package/node_modules/uuid/dist/umd/uuidValidate.min.js +1 -0
- package/node_modules/uuid/dist/umd/uuidVersion.min.js +1 -0
- package/node_modules/uuid/dist/umd/uuidv1.min.js +1 -0
- package/node_modules/uuid/dist/umd/uuidv3.min.js +1 -0
- package/node_modules/uuid/dist/umd/uuidv4.min.js +1 -0
- package/node_modules/uuid/dist/umd/uuidv5.min.js +1 -0
- package/node_modules/uuid/dist/uuid-bin.js +85 -0
- package/node_modules/uuid/dist/v1.js +107 -0
- package/node_modules/uuid/dist/v3.js +16 -0
- package/node_modules/uuid/dist/v35.js +78 -0
- package/node_modules/uuid/dist/v4.js +37 -0
- package/node_modules/uuid/dist/v5.js +16 -0
- package/node_modules/uuid/dist/validate.js +17 -0
- package/node_modules/uuid/dist/version.js +21 -0
- package/node_modules/uuid/package.json +167 -0
- package/node_modules/uuid/wrapper.mjs +10 -0
- package/node_modules/webidl-conversions/LICENSE.md +12 -0
- package/node_modules/webidl-conversions/README.md +53 -0
- package/node_modules/webidl-conversions/lib/index.js +189 -0
- package/node_modules/webidl-conversions/package.json +62 -0
- package/node_modules/websocket-stream/LICENSE +8 -0
- package/node_modules/websocket-stream/collaborators.md +11 -0
- package/node_modules/websocket-stream/echo-server.js +51 -0
- package/node_modules/websocket-stream/index.d.ts +27 -0
- package/node_modules/websocket-stream/index.js +6 -0
- package/node_modules/websocket-stream/package.json +82 -0
- package/node_modules/websocket-stream/readme.md +148 -0
- package/node_modules/websocket-stream/server.js +29 -0
- package/node_modules/websocket-stream/stream.js +189 -0
- package/node_modules/websocket-stream/test-client.js +74 -0
- package/node_modules/websocket-stream/test-server.js +56 -0
- package/node_modules/websocket-stream/test.js +338 -0
- package/node_modules/websocket-stream/ts-tests.ts +69 -0
- package/node_modules/websocket-stream/ws-fallback.js +12 -0
- package/node_modules/whatwg-url/LICENSE.txt +21 -0
- package/node_modules/whatwg-url/README.md +67 -0
- package/node_modules/whatwg-url/lib/URL-impl.js +200 -0
- package/node_modules/whatwg-url/lib/URL.js +196 -0
- package/node_modules/whatwg-url/lib/public-api.js +11 -0
- package/node_modules/whatwg-url/lib/url-state-machine.js +1297 -0
- package/node_modules/whatwg-url/lib/utils.js +20 -0
- package/node_modules/whatwg-url/package.json +70 -0
- package/node_modules/wide-align/LICENSE +14 -0
- package/node_modules/wide-align/README.md +47 -0
- package/node_modules/wide-align/align.js +65 -0
- package/node_modules/wide-align/package.json +69 -0
- package/node_modules/wolfy87-eventemitter/CHANGES.md +47 -0
- package/node_modules/wolfy87-eventemitter/EventEmitter.d.ts +507 -0
- package/node_modules/wolfy87-eventemitter/EventEmitter.js +486 -0
- package/node_modules/wolfy87-eventemitter/EventEmitter.min.js +7 -0
- package/node_modules/wolfy87-eventemitter/README.md +80 -0
- package/node_modules/wolfy87-eventemitter/UNLICENSE +24 -0
- package/node_modules/wolfy87-eventemitter/bower.json +22 -0
- package/node_modules/wolfy87-eventemitter/component.json +10 -0
- package/node_modules/wolfy87-eventemitter/docs/api.dust +17 -0
- package/node_modules/wolfy87-eventemitter/docs/api.md +157 -0
- package/node_modules/wolfy87-eventemitter/docs/guide.md +301 -0
- package/node_modules/wolfy87-eventemitter/docs/render.js +48 -0
- package/node_modules/wolfy87-eventemitter/package.json +67 -0
- package/node_modules/wolfy87-eventemitter/tests/index.html +16 -0
- package/node_modules/wolfy87-eventemitter/tests/tests.js +845 -0
- package/node_modules/wolfy87-eventemitter/tools/dist.sh +6 -0
- package/node_modules/wolfy87-eventemitter/tools/doc.sh +4 -0
- package/node_modules/wolfy87-eventemitter/tools/server-python2.sh +2 -0
- package/node_modules/wolfy87-eventemitter/tools/server.sh +2 -0
- package/node_modules/wrap-ansi/index.js +216 -0
- package/node_modules/wrap-ansi/license +9 -0
- package/node_modules/wrap-ansi/package.json +98 -0
- package/node_modules/wrap-ansi/readme.md +91 -0
- package/node_modules/wrappy/LICENSE +15 -0
- package/node_modules/wrappy/README.md +36 -0
- package/node_modules/wrappy/package.json +62 -0
- package/node_modules/wrappy/wrappy.js +33 -0
- package/node_modules/ws/LICENSE +21 -0
- package/node_modules/ws/README.md +341 -0
- package/node_modules/ws/index.js +15 -0
- package/node_modules/ws/lib/.DS_Store +0 -0
- package/node_modules/ws/lib/BufferUtil.js +71 -0
- package/node_modules/ws/lib/Constants.js +10 -0
- package/node_modules/ws/lib/ErrorCodes.js +28 -0
- package/node_modules/ws/lib/EventTarget.js +151 -0
- package/node_modules/ws/lib/Extensions.js +203 -0
- package/node_modules/ws/lib/PerMessageDeflate.js +507 -0
- package/node_modules/ws/lib/Receiver.js +553 -0
- package/node_modules/ws/lib/Sender.js +412 -0
- package/node_modules/ws/lib/Validation.js +17 -0
- package/node_modules/ws/lib/WebSocket.js +717 -0
- package/node_modules/ws/lib/WebSocketServer.js +326 -0
- package/node_modules/ws/package.json +83 -0
- package/node_modules/xhr2/CONTRIBUTING.md +33 -0
- package/node_modules/xhr2/Cakefile +131 -0
- package/node_modules/xhr2/LICENSE.txt +19 -0
- package/node_modules/xhr2/README.md +142 -0
- package/node_modules/xhr2/lib/browser.js +1 -0
- package/node_modules/xhr2/lib/xhr2.js +1244 -0
- package/node_modules/xhr2/package.json +103 -0
- package/node_modules/xhr2/src/000-xml_http_request_event_target.coffee +89 -0
- package/node_modules/xhr2/src/001-xml_http_request.coffee +781 -0
- package/node_modules/xhr2/src/errors.coffee +31 -0
- package/node_modules/xhr2/src/progress_event.coffee +39 -0
- package/node_modules/xhr2/src/xml_http_request_upload.coffee +95 -0
- package/node_modules/xhr2/test/fixtures/hello.json +1 -0
- package/node_modules/xhr2/test/fixtures/hello.txt +1 -0
- package/node_modules/xhr2/test/fixtures/xhr2.png +0 -0
- package/node_modules/xhr2/test/html/browser_test.html +30 -0
- package/node_modules/xhr2/test/src/event_target_test.coffee +85 -0
- package/node_modules/xhr2/test/src/events_test.coffee +204 -0
- package/node_modules/xhr2/test/src/headers_test.coffee +168 -0
- package/node_modules/xhr2/test/src/helpers/browser_mocha_runner.coffee +10 -0
- package/node_modules/xhr2/test/src/helpers/browser_mocha_setup.coffee +1 -0
- package/node_modules/xhr2/test/src/helpers/setup.coffee +38 -0
- package/node_modules/xhr2/test/src/helpers/xhr_server.coffee +156 -0
- package/node_modules/xhr2/test/src/nodejs_set_test.coffee +162 -0
- package/node_modules/xhr2/test/src/redirect_test.coffee +57 -0
- package/node_modules/xhr2/test/src/response_type_test.coffee +88 -0
- package/node_modules/xhr2/test/src/responseurl_test.coffee +18 -0
- package/node_modules/xhr2/test/src/send_test.coffee +89 -0
- package/node_modules/xhr2/test/src/status_test.coffee +47 -0
- package/node_modules/xhr2/test/src/xhr_test.coffee +102 -0
- package/node_modules/xtend/.jshintrc +30 -0
- package/node_modules/xtend/LICENSE +20 -0
- package/node_modules/xtend/README.md +32 -0
- package/node_modules/xtend/immutable.js +19 -0
- package/node_modules/xtend/mutable.js +17 -0
- package/node_modules/xtend/package.json +89 -0
- package/node_modules/xtend/test.js +103 -0
- package/node_modules/y18n/CHANGELOG.md +100 -0
- package/node_modules/y18n/LICENSE +13 -0
- package/node_modules/y18n/README.md +127 -0
- package/node_modules/y18n/build/index.cjs +203 -0
- package/node_modules/y18n/build/lib/cjs.js +6 -0
- package/node_modules/y18n/build/lib/index.js +174 -0
- package/node_modules/y18n/build/lib/platform-shims/node.js +19 -0
- package/node_modules/y18n/index.mjs +8 -0
- package/node_modules/y18n/package.json +104 -0
- package/node_modules/yallist/LICENSE +15 -0
- package/node_modules/yallist/README.md +204 -0
- package/node_modules/yallist/iterator.js +8 -0
- package/node_modules/yallist/package.json +68 -0
- package/node_modules/yallist/yallist.js +426 -0
- package/node_modules/yargs/LICENSE +21 -0
- package/node_modules/yargs/README.md +204 -0
- package/node_modules/yargs/browser.mjs +7 -0
- package/node_modules/yargs/build/index.cjs +1 -0
- package/node_modules/yargs/build/lib/argsert.js +62 -0
- package/node_modules/yargs/build/lib/command.js +447 -0
- package/node_modules/yargs/build/lib/completion-templates.js +48 -0
- package/node_modules/yargs/build/lib/completion.js +236 -0
- package/node_modules/yargs/build/lib/middleware.js +88 -0
- package/node_modules/yargs/build/lib/parse-command.js +32 -0
- package/node_modules/yargs/build/lib/typings/common-types.js +9 -0
- package/node_modules/yargs/build/lib/typings/yargs-parser-types.js +1 -0
- package/node_modules/yargs/build/lib/usage.js +579 -0
- package/node_modules/yargs/build/lib/utils/apply-extends.js +59 -0
- package/node_modules/yargs/build/lib/utils/is-promise.js +5 -0
- package/node_modules/yargs/build/lib/utils/levenshtein.js +34 -0
- package/node_modules/yargs/build/lib/utils/maybe-async-result.js +17 -0
- package/node_modules/yargs/build/lib/utils/obj-filter.js +10 -0
- package/node_modules/yargs/build/lib/utils/process-argv.js +17 -0
- package/node_modules/yargs/build/lib/utils/set-blocking.js +12 -0
- package/node_modules/yargs/build/lib/utils/which-module.js +10 -0
- package/node_modules/yargs/build/lib/validation.js +305 -0
- package/node_modules/yargs/build/lib/yargs-factory.js +1497 -0
- package/node_modules/yargs/build/lib/yerror.js +9 -0
- package/node_modules/yargs/helpers/helpers.mjs +10 -0
- package/node_modules/yargs/helpers/index.js +14 -0
- package/node_modules/yargs/helpers/package.json +3 -0
- package/node_modules/yargs/index.cjs +53 -0
- package/node_modules/yargs/index.mjs +8 -0
- package/node_modules/yargs/lib/platform-shims/browser.mjs +95 -0
- package/node_modules/yargs/lib/platform-shims/esm.mjs +73 -0
- package/node_modules/yargs/locales/be.json +46 -0
- package/node_modules/yargs/locales/de.json +46 -0
- package/node_modules/yargs/locales/en.json +51 -0
- package/node_modules/yargs/locales/es.json +46 -0
- package/node_modules/yargs/locales/fi.json +49 -0
- package/node_modules/yargs/locales/fr.json +53 -0
- package/node_modules/yargs/locales/hi.json +49 -0
- package/node_modules/yargs/locales/hu.json +46 -0
- package/node_modules/yargs/locales/id.json +50 -0
- package/node_modules/yargs/locales/it.json +46 -0
- package/node_modules/yargs/locales/ja.json +51 -0
- package/node_modules/yargs/locales/ko.json +49 -0
- package/node_modules/yargs/locales/nb.json +44 -0
- package/node_modules/yargs/locales/nl.json +49 -0
- package/node_modules/yargs/locales/nn.json +44 -0
- package/node_modules/yargs/locales/pirate.json +13 -0
- package/node_modules/yargs/locales/pl.json +49 -0
- package/node_modules/yargs/locales/pt.json +45 -0
- package/node_modules/yargs/locales/pt_BR.json +48 -0
- package/node_modules/yargs/locales/ru.json +51 -0
- package/node_modules/yargs/locales/th.json +46 -0
- package/node_modules/yargs/locales/tr.json +48 -0
- package/node_modules/yargs/locales/uk_UA.json +51 -0
- package/node_modules/yargs/locales/uz.json +52 -0
- package/node_modules/yargs/locales/zh_CN.json +48 -0
- package/node_modules/yargs/locales/zh_TW.json +51 -0
- package/node_modules/yargs/package.json +154 -0
- package/node_modules/yargs/yargs +9 -0
- package/node_modules/yargs/yargs.mjs +10 -0
- package/node_modules/yargs-parser/CHANGELOG.md +287 -0
- package/node_modules/yargs-parser/LICENSE.txt +14 -0
- package/node_modules/yargs-parser/README.md +518 -0
- package/node_modules/yargs-parser/browser.js +29 -0
- package/node_modules/yargs-parser/build/index.cjs +1048 -0
- package/node_modules/yargs-parser/build/lib/index.js +60 -0
- package/node_modules/yargs-parser/build/lib/string-utils.js +65 -0
- package/node_modules/yargs-parser/build/lib/tokenize-arg-string.js +40 -0
- package/node_modules/yargs-parser/build/lib/yargs-parser-types.js +12 -0
- package/node_modules/yargs-parser/build/lib/yargs-parser.js +1045 -0
- package/node_modules/yargs-parser/package.json +123 -0
- package/node_modules/yazl/LICENSE +21 -0
- package/node_modules/yazl/README.md +389 -0
- package/node_modules/yazl/index.js +749 -0
- package/node_modules/yazl/package.json +69 -0
- package/package.json +60 -0
- package/src/commands/Client.js +45 -0
- package/src/commands/CorelliumAPI.js +76 -0
- package/src/commands/agent/Agent.js +46 -0
- package/src/commands/agent/apps.js +54 -0
- package/src/commands/agent/file.js +48 -0
- package/src/commands/agent/index.js +26 -0
- package/src/commands/extensions/delete.js +52 -0
- package/src/commands/extensions/index.js +15 -0
- package/src/commands/extensions/list.js +46 -0
- package/src/commands/extensions/load.js +71 -0
- package/src/commands/extensions/validate.js +62 -0
- package/src/commands/firmware/index.js +13 -0
- package/src/commands/firmware/list.js +62 -0
- package/src/commands/firmware/load.js +57 -0
- package/src/commands/images/create.js +82 -0
- package/src/commands/images/delete.js +39 -0
- package/src/commands/images/index.js +14 -0
- package/src/commands/images/list.js +38 -0
- package/src/commands/index.js +12 -0
- package/src/commands/instances/create.js +66 -0
- package/src/commands/instances/delete.js +39 -0
- package/src/commands/instances/index.js +16 -0
- package/src/commands/instances/list.js +45 -0
- package/src/commands/instances/start.js +48 -0
- package/src/commands/instances/stop.js +48 -0
- package/src/commands/login.js +75 -0
- package/src/commands/logout.js +33 -0
- package/src/commands/projects/create.js +86 -0
- package/src/commands/projects/delete.js +52 -0
- package/src/commands/projects/index.js +14 -0
- package/src/commands/projects/list.js +37 -0
- package/src/commands/signup.js +100 -0
- package/src/commands/webplayer/WebPlayer.js +56 -0
- package/src/commands/webplayer/create.js +61 -0
- package/src/commands/webplayer/destroy.js +43 -0
- package/src/commands/webplayer/index.js +15 -0
- package/src/commands/webplayer/list.js +65 -0
- package/src/commands/webplayer/login.js +45 -0
- package/src/error.js +10 -0
- package/src/logging.js +28 -0
- package/src/profile.js +60 -0
- package/src/subscriberInvite.js +140 -0
- package/src/table.js +36 -0
- package/src/upload.js +34 -0
- package/src/utils.js +147 -0
@@ -0,0 +1,3300 @@
|
|
1
|
+
/* pako 1.0.11 nodeca/pako */(function(f){if(typeof exports==="object"&&typeof module!=="undefined"){module.exports=f()}else if(typeof define==="function"&&define.amd){define([],f)}else{var g;if(typeof window!=="undefined"){g=window}else if(typeof global!=="undefined"){g=global}else if(typeof self!=="undefined"){g=self}else{g=this}g.pako = f()}})(function(){var define,module,exports;return (function(){function r(e,n,t){function o(i,f){if(!n[i]){if(!e[i]){var c="function"==typeof require&&require;if(!f&&c)return c(i,!0);if(u)return u(i,!0);var a=new Error("Cannot find module '"+i+"'");throw a.code="MODULE_NOT_FOUND",a}var p=n[i]={exports:{}};e[i][0].call(p.exports,function(r){var n=e[i][1][r];return o(n||r)},p,p.exports,r,e,n,t)}return n[i].exports}for(var u="function"==typeof require&&require,i=0;i<t.length;i++)o(t[i]);return o}return r})()({1:[function(require,module,exports){
|
2
|
+
'use strict';
|
3
|
+
|
4
|
+
|
5
|
+
var TYPED_OK = (typeof Uint8Array !== 'undefined') &&
|
6
|
+
(typeof Uint16Array !== 'undefined') &&
|
7
|
+
(typeof Int32Array !== 'undefined');
|
8
|
+
|
9
|
+
function _has(obj, key) {
|
10
|
+
return Object.prototype.hasOwnProperty.call(obj, key);
|
11
|
+
}
|
12
|
+
|
13
|
+
exports.assign = function (obj /*from1, from2, from3, ...*/) {
|
14
|
+
var sources = Array.prototype.slice.call(arguments, 1);
|
15
|
+
while (sources.length) {
|
16
|
+
var source = sources.shift();
|
17
|
+
if (!source) { continue; }
|
18
|
+
|
19
|
+
if (typeof source !== 'object') {
|
20
|
+
throw new TypeError(source + 'must be non-object');
|
21
|
+
}
|
22
|
+
|
23
|
+
for (var p in source) {
|
24
|
+
if (_has(source, p)) {
|
25
|
+
obj[p] = source[p];
|
26
|
+
}
|
27
|
+
}
|
28
|
+
}
|
29
|
+
|
30
|
+
return obj;
|
31
|
+
};
|
32
|
+
|
33
|
+
|
34
|
+
// reduce buffer size, avoiding mem copy
|
35
|
+
exports.shrinkBuf = function (buf, size) {
|
36
|
+
if (buf.length === size) { return buf; }
|
37
|
+
if (buf.subarray) { return buf.subarray(0, size); }
|
38
|
+
buf.length = size;
|
39
|
+
return buf;
|
40
|
+
};
|
41
|
+
|
42
|
+
|
43
|
+
var fnTyped = {
|
44
|
+
arraySet: function (dest, src, src_offs, len, dest_offs) {
|
45
|
+
if (src.subarray && dest.subarray) {
|
46
|
+
dest.set(src.subarray(src_offs, src_offs + len), dest_offs);
|
47
|
+
return;
|
48
|
+
}
|
49
|
+
// Fallback to ordinary array
|
50
|
+
for (var i = 0; i < len; i++) {
|
51
|
+
dest[dest_offs + i] = src[src_offs + i];
|
52
|
+
}
|
53
|
+
},
|
54
|
+
// Join array of chunks to single array.
|
55
|
+
flattenChunks: function (chunks) {
|
56
|
+
var i, l, len, pos, chunk, result;
|
57
|
+
|
58
|
+
// calculate data length
|
59
|
+
len = 0;
|
60
|
+
for (i = 0, l = chunks.length; i < l; i++) {
|
61
|
+
len += chunks[i].length;
|
62
|
+
}
|
63
|
+
|
64
|
+
// join chunks
|
65
|
+
result = new Uint8Array(len);
|
66
|
+
pos = 0;
|
67
|
+
for (i = 0, l = chunks.length; i < l; i++) {
|
68
|
+
chunk = chunks[i];
|
69
|
+
result.set(chunk, pos);
|
70
|
+
pos += chunk.length;
|
71
|
+
}
|
72
|
+
|
73
|
+
return result;
|
74
|
+
}
|
75
|
+
};
|
76
|
+
|
77
|
+
var fnUntyped = {
|
78
|
+
arraySet: function (dest, src, src_offs, len, dest_offs) {
|
79
|
+
for (var i = 0; i < len; i++) {
|
80
|
+
dest[dest_offs + i] = src[src_offs + i];
|
81
|
+
}
|
82
|
+
},
|
83
|
+
// Join array of chunks to single array.
|
84
|
+
flattenChunks: function (chunks) {
|
85
|
+
return [].concat.apply([], chunks);
|
86
|
+
}
|
87
|
+
};
|
88
|
+
|
89
|
+
|
90
|
+
// Enable/Disable typed arrays use, for testing
|
91
|
+
//
|
92
|
+
exports.setTyped = function (on) {
|
93
|
+
if (on) {
|
94
|
+
exports.Buf8 = Uint8Array;
|
95
|
+
exports.Buf16 = Uint16Array;
|
96
|
+
exports.Buf32 = Int32Array;
|
97
|
+
exports.assign(exports, fnTyped);
|
98
|
+
} else {
|
99
|
+
exports.Buf8 = Array;
|
100
|
+
exports.Buf16 = Array;
|
101
|
+
exports.Buf32 = Array;
|
102
|
+
exports.assign(exports, fnUntyped);
|
103
|
+
}
|
104
|
+
};
|
105
|
+
|
106
|
+
exports.setTyped(TYPED_OK);
|
107
|
+
|
108
|
+
},{}],2:[function(require,module,exports){
|
109
|
+
// String encode/decode helpers
|
110
|
+
'use strict';
|
111
|
+
|
112
|
+
|
113
|
+
var utils = require('./common');
|
114
|
+
|
115
|
+
|
116
|
+
// Quick check if we can use fast array to bin string conversion
|
117
|
+
//
|
118
|
+
// - apply(Array) can fail on Android 2.2
|
119
|
+
// - apply(Uint8Array) can fail on iOS 5.1 Safari
|
120
|
+
//
|
121
|
+
var STR_APPLY_OK = true;
|
122
|
+
var STR_APPLY_UIA_OK = true;
|
123
|
+
|
124
|
+
try { String.fromCharCode.apply(null, [ 0 ]); } catch (__) { STR_APPLY_OK = false; }
|
125
|
+
try { String.fromCharCode.apply(null, new Uint8Array(1)); } catch (__) { STR_APPLY_UIA_OK = false; }
|
126
|
+
|
127
|
+
|
128
|
+
// Table with utf8 lengths (calculated by first byte of sequence)
|
129
|
+
// Note, that 5 & 6-byte values and some 4-byte values can not be represented in JS,
|
130
|
+
// because max possible codepoint is 0x10ffff
|
131
|
+
var _utf8len = new utils.Buf8(256);
|
132
|
+
for (var q = 0; q < 256; q++) {
|
133
|
+
_utf8len[q] = (q >= 252 ? 6 : q >= 248 ? 5 : q >= 240 ? 4 : q >= 224 ? 3 : q >= 192 ? 2 : 1);
|
134
|
+
}
|
135
|
+
_utf8len[254] = _utf8len[254] = 1; // Invalid sequence start
|
136
|
+
|
137
|
+
|
138
|
+
// convert string to array (typed, when possible)
|
139
|
+
exports.string2buf = function (str) {
|
140
|
+
var buf, c, c2, m_pos, i, str_len = str.length, buf_len = 0;
|
141
|
+
|
142
|
+
// count binary size
|
143
|
+
for (m_pos = 0; m_pos < str_len; m_pos++) {
|
144
|
+
c = str.charCodeAt(m_pos);
|
145
|
+
if ((c & 0xfc00) === 0xd800 && (m_pos + 1 < str_len)) {
|
146
|
+
c2 = str.charCodeAt(m_pos + 1);
|
147
|
+
if ((c2 & 0xfc00) === 0xdc00) {
|
148
|
+
c = 0x10000 + ((c - 0xd800) << 10) + (c2 - 0xdc00);
|
149
|
+
m_pos++;
|
150
|
+
}
|
151
|
+
}
|
152
|
+
buf_len += c < 0x80 ? 1 : c < 0x800 ? 2 : c < 0x10000 ? 3 : 4;
|
153
|
+
}
|
154
|
+
|
155
|
+
// allocate buffer
|
156
|
+
buf = new utils.Buf8(buf_len);
|
157
|
+
|
158
|
+
// convert
|
159
|
+
for (i = 0, m_pos = 0; i < buf_len; m_pos++) {
|
160
|
+
c = str.charCodeAt(m_pos);
|
161
|
+
if ((c & 0xfc00) === 0xd800 && (m_pos + 1 < str_len)) {
|
162
|
+
c2 = str.charCodeAt(m_pos + 1);
|
163
|
+
if ((c2 & 0xfc00) === 0xdc00) {
|
164
|
+
c = 0x10000 + ((c - 0xd800) << 10) + (c2 - 0xdc00);
|
165
|
+
m_pos++;
|
166
|
+
}
|
167
|
+
}
|
168
|
+
if (c < 0x80) {
|
169
|
+
/* one byte */
|
170
|
+
buf[i++] = c;
|
171
|
+
} else if (c < 0x800) {
|
172
|
+
/* two bytes */
|
173
|
+
buf[i++] = 0xC0 | (c >>> 6);
|
174
|
+
buf[i++] = 0x80 | (c & 0x3f);
|
175
|
+
} else if (c < 0x10000) {
|
176
|
+
/* three bytes */
|
177
|
+
buf[i++] = 0xE0 | (c >>> 12);
|
178
|
+
buf[i++] = 0x80 | (c >>> 6 & 0x3f);
|
179
|
+
buf[i++] = 0x80 | (c & 0x3f);
|
180
|
+
} else {
|
181
|
+
/* four bytes */
|
182
|
+
buf[i++] = 0xf0 | (c >>> 18);
|
183
|
+
buf[i++] = 0x80 | (c >>> 12 & 0x3f);
|
184
|
+
buf[i++] = 0x80 | (c >>> 6 & 0x3f);
|
185
|
+
buf[i++] = 0x80 | (c & 0x3f);
|
186
|
+
}
|
187
|
+
}
|
188
|
+
|
189
|
+
return buf;
|
190
|
+
};
|
191
|
+
|
192
|
+
// Helper (used in 2 places)
|
193
|
+
function buf2binstring(buf, len) {
|
194
|
+
// On Chrome, the arguments in a function call that are allowed is `65534`.
|
195
|
+
// If the length of the buffer is smaller than that, we can use this optimization,
|
196
|
+
// otherwise we will take a slower path.
|
197
|
+
if (len < 65534) {
|
198
|
+
if ((buf.subarray && STR_APPLY_UIA_OK) || (!buf.subarray && STR_APPLY_OK)) {
|
199
|
+
return String.fromCharCode.apply(null, utils.shrinkBuf(buf, len));
|
200
|
+
}
|
201
|
+
}
|
202
|
+
|
203
|
+
var result = '';
|
204
|
+
for (var i = 0; i < len; i++) {
|
205
|
+
result += String.fromCharCode(buf[i]);
|
206
|
+
}
|
207
|
+
return result;
|
208
|
+
}
|
209
|
+
|
210
|
+
|
211
|
+
// Convert byte array to binary string
|
212
|
+
exports.buf2binstring = function (buf) {
|
213
|
+
return buf2binstring(buf, buf.length);
|
214
|
+
};
|
215
|
+
|
216
|
+
|
217
|
+
// Convert binary string (typed, when possible)
|
218
|
+
exports.binstring2buf = function (str) {
|
219
|
+
var buf = new utils.Buf8(str.length);
|
220
|
+
for (var i = 0, len = buf.length; i < len; i++) {
|
221
|
+
buf[i] = str.charCodeAt(i);
|
222
|
+
}
|
223
|
+
return buf;
|
224
|
+
};
|
225
|
+
|
226
|
+
|
227
|
+
// convert array to string
|
228
|
+
exports.buf2string = function (buf, max) {
|
229
|
+
var i, out, c, c_len;
|
230
|
+
var len = max || buf.length;
|
231
|
+
|
232
|
+
// Reserve max possible length (2 words per char)
|
233
|
+
// NB: by unknown reasons, Array is significantly faster for
|
234
|
+
// String.fromCharCode.apply than Uint16Array.
|
235
|
+
var utf16buf = new Array(len * 2);
|
236
|
+
|
237
|
+
for (out = 0, i = 0; i < len;) {
|
238
|
+
c = buf[i++];
|
239
|
+
// quick process ascii
|
240
|
+
if (c < 0x80) { utf16buf[out++] = c; continue; }
|
241
|
+
|
242
|
+
c_len = _utf8len[c];
|
243
|
+
// skip 5 & 6 byte codes
|
244
|
+
if (c_len > 4) { utf16buf[out++] = 0xfffd; i += c_len - 1; continue; }
|
245
|
+
|
246
|
+
// apply mask on first byte
|
247
|
+
c &= c_len === 2 ? 0x1f : c_len === 3 ? 0x0f : 0x07;
|
248
|
+
// join the rest
|
249
|
+
while (c_len > 1 && i < len) {
|
250
|
+
c = (c << 6) | (buf[i++] & 0x3f);
|
251
|
+
c_len--;
|
252
|
+
}
|
253
|
+
|
254
|
+
// terminated by end of string?
|
255
|
+
if (c_len > 1) { utf16buf[out++] = 0xfffd; continue; }
|
256
|
+
|
257
|
+
if (c < 0x10000) {
|
258
|
+
utf16buf[out++] = c;
|
259
|
+
} else {
|
260
|
+
c -= 0x10000;
|
261
|
+
utf16buf[out++] = 0xd800 | ((c >> 10) & 0x3ff);
|
262
|
+
utf16buf[out++] = 0xdc00 | (c & 0x3ff);
|
263
|
+
}
|
264
|
+
}
|
265
|
+
|
266
|
+
return buf2binstring(utf16buf, out);
|
267
|
+
};
|
268
|
+
|
269
|
+
|
270
|
+
// Calculate max possible position in utf8 buffer,
|
271
|
+
// that will not break sequence. If that's not possible
|
272
|
+
// - (very small limits) return max size as is.
|
273
|
+
//
|
274
|
+
// buf[] - utf8 bytes array
|
275
|
+
// max - length limit (mandatory);
|
276
|
+
exports.utf8border = function (buf, max) {
|
277
|
+
var pos;
|
278
|
+
|
279
|
+
max = max || buf.length;
|
280
|
+
if (max > buf.length) { max = buf.length; }
|
281
|
+
|
282
|
+
// go back from last position, until start of sequence found
|
283
|
+
pos = max - 1;
|
284
|
+
while (pos >= 0 && (buf[pos] & 0xC0) === 0x80) { pos--; }
|
285
|
+
|
286
|
+
// Very small and broken sequence,
|
287
|
+
// return max, because we should return something anyway.
|
288
|
+
if (pos < 0) { return max; }
|
289
|
+
|
290
|
+
// If we came to start of buffer - that means buffer is too small,
|
291
|
+
// return max too.
|
292
|
+
if (pos === 0) { return max; }
|
293
|
+
|
294
|
+
return (pos + _utf8len[buf[pos]] > max) ? pos : max;
|
295
|
+
};
|
296
|
+
|
297
|
+
},{"./common":1}],3:[function(require,module,exports){
|
298
|
+
'use strict';
|
299
|
+
|
300
|
+
// Note: adler32 takes 12% for level 0 and 2% for level 6.
|
301
|
+
// It isn't worth it to make additional optimizations as in original.
|
302
|
+
// Small size is preferable.
|
303
|
+
|
304
|
+
// (C) 1995-2013 Jean-loup Gailly and Mark Adler
|
305
|
+
// (C) 2014-2017 Vitaly Puzrin and Andrey Tupitsin
|
306
|
+
//
|
307
|
+
// This software is provided 'as-is', without any express or implied
|
308
|
+
// warranty. In no event will the authors be held liable for any damages
|
309
|
+
// arising from the use of this software.
|
310
|
+
//
|
311
|
+
// Permission is granted to anyone to use this software for any purpose,
|
312
|
+
// including commercial applications, and to alter it and redistribute it
|
313
|
+
// freely, subject to the following restrictions:
|
314
|
+
//
|
315
|
+
// 1. The origin of this software must not be misrepresented; you must not
|
316
|
+
// claim that you wrote the original software. If you use this software
|
317
|
+
// in a product, an acknowledgment in the product documentation would be
|
318
|
+
// appreciated but is not required.
|
319
|
+
// 2. Altered source versions must be plainly marked as such, and must not be
|
320
|
+
// misrepresented as being the original software.
|
321
|
+
// 3. This notice may not be removed or altered from any source distribution.
|
322
|
+
|
323
|
+
function adler32(adler, buf, len, pos) {
|
324
|
+
var s1 = (adler & 0xffff) |0,
|
325
|
+
s2 = ((adler >>> 16) & 0xffff) |0,
|
326
|
+
n = 0;
|
327
|
+
|
328
|
+
while (len !== 0) {
|
329
|
+
// Set limit ~ twice less than 5552, to keep
|
330
|
+
// s2 in 31-bits, because we force signed ints.
|
331
|
+
// in other case %= will fail.
|
332
|
+
n = len > 2000 ? 2000 : len;
|
333
|
+
len -= n;
|
334
|
+
|
335
|
+
do {
|
336
|
+
s1 = (s1 + buf[pos++]) |0;
|
337
|
+
s2 = (s2 + s1) |0;
|
338
|
+
} while (--n);
|
339
|
+
|
340
|
+
s1 %= 65521;
|
341
|
+
s2 %= 65521;
|
342
|
+
}
|
343
|
+
|
344
|
+
return (s1 | (s2 << 16)) |0;
|
345
|
+
}
|
346
|
+
|
347
|
+
|
348
|
+
module.exports = adler32;
|
349
|
+
|
350
|
+
},{}],4:[function(require,module,exports){
|
351
|
+
'use strict';
|
352
|
+
|
353
|
+
// (C) 1995-2013 Jean-loup Gailly and Mark Adler
|
354
|
+
// (C) 2014-2017 Vitaly Puzrin and Andrey Tupitsin
|
355
|
+
//
|
356
|
+
// This software is provided 'as-is', without any express or implied
|
357
|
+
// warranty. In no event will the authors be held liable for any damages
|
358
|
+
// arising from the use of this software.
|
359
|
+
//
|
360
|
+
// Permission is granted to anyone to use this software for any purpose,
|
361
|
+
// including commercial applications, and to alter it and redistribute it
|
362
|
+
// freely, subject to the following restrictions:
|
363
|
+
//
|
364
|
+
// 1. The origin of this software must not be misrepresented; you must not
|
365
|
+
// claim that you wrote the original software. If you use this software
|
366
|
+
// in a product, an acknowledgment in the product documentation would be
|
367
|
+
// appreciated but is not required.
|
368
|
+
// 2. Altered source versions must be plainly marked as such, and must not be
|
369
|
+
// misrepresented as being the original software.
|
370
|
+
// 3. This notice may not be removed or altered from any source distribution.
|
371
|
+
|
372
|
+
module.exports = {
|
373
|
+
|
374
|
+
/* Allowed flush values; see deflate() and inflate() below for details */
|
375
|
+
Z_NO_FLUSH: 0,
|
376
|
+
Z_PARTIAL_FLUSH: 1,
|
377
|
+
Z_SYNC_FLUSH: 2,
|
378
|
+
Z_FULL_FLUSH: 3,
|
379
|
+
Z_FINISH: 4,
|
380
|
+
Z_BLOCK: 5,
|
381
|
+
Z_TREES: 6,
|
382
|
+
|
383
|
+
/* Return codes for the compression/decompression functions. Negative values
|
384
|
+
* are errors, positive values are used for special but normal events.
|
385
|
+
*/
|
386
|
+
Z_OK: 0,
|
387
|
+
Z_STREAM_END: 1,
|
388
|
+
Z_NEED_DICT: 2,
|
389
|
+
Z_ERRNO: -1,
|
390
|
+
Z_STREAM_ERROR: -2,
|
391
|
+
Z_DATA_ERROR: -3,
|
392
|
+
//Z_MEM_ERROR: -4,
|
393
|
+
Z_BUF_ERROR: -5,
|
394
|
+
//Z_VERSION_ERROR: -6,
|
395
|
+
|
396
|
+
/* compression levels */
|
397
|
+
Z_NO_COMPRESSION: 0,
|
398
|
+
Z_BEST_SPEED: 1,
|
399
|
+
Z_BEST_COMPRESSION: 9,
|
400
|
+
Z_DEFAULT_COMPRESSION: -1,
|
401
|
+
|
402
|
+
|
403
|
+
Z_FILTERED: 1,
|
404
|
+
Z_HUFFMAN_ONLY: 2,
|
405
|
+
Z_RLE: 3,
|
406
|
+
Z_FIXED: 4,
|
407
|
+
Z_DEFAULT_STRATEGY: 0,
|
408
|
+
|
409
|
+
/* Possible values of the data_type field (though see inflate()) */
|
410
|
+
Z_BINARY: 0,
|
411
|
+
Z_TEXT: 1,
|
412
|
+
//Z_ASCII: 1, // = Z_TEXT (deprecated)
|
413
|
+
Z_UNKNOWN: 2,
|
414
|
+
|
415
|
+
/* The deflate compression method */
|
416
|
+
Z_DEFLATED: 8
|
417
|
+
//Z_NULL: null // Use -1 or null inline, depending on var type
|
418
|
+
};
|
419
|
+
|
420
|
+
},{}],5:[function(require,module,exports){
|
421
|
+
'use strict';
|
422
|
+
|
423
|
+
// Note: we can't get significant speed boost here.
|
424
|
+
// So write code to minimize size - no pregenerated tables
|
425
|
+
// and array tools dependencies.
|
426
|
+
|
427
|
+
// (C) 1995-2013 Jean-loup Gailly and Mark Adler
|
428
|
+
// (C) 2014-2017 Vitaly Puzrin and Andrey Tupitsin
|
429
|
+
//
|
430
|
+
// This software is provided 'as-is', without any express or implied
|
431
|
+
// warranty. In no event will the authors be held liable for any damages
|
432
|
+
// arising from the use of this software.
|
433
|
+
//
|
434
|
+
// Permission is granted to anyone to use this software for any purpose,
|
435
|
+
// including commercial applications, and to alter it and redistribute it
|
436
|
+
// freely, subject to the following restrictions:
|
437
|
+
//
|
438
|
+
// 1. The origin of this software must not be misrepresented; you must not
|
439
|
+
// claim that you wrote the original software. If you use this software
|
440
|
+
// in a product, an acknowledgment in the product documentation would be
|
441
|
+
// appreciated but is not required.
|
442
|
+
// 2. Altered source versions must be plainly marked as such, and must not be
|
443
|
+
// misrepresented as being the original software.
|
444
|
+
// 3. This notice may not be removed or altered from any source distribution.
|
445
|
+
|
446
|
+
// Use ordinary array, since untyped makes no boost here
|
447
|
+
function makeTable() {
|
448
|
+
var c, table = [];
|
449
|
+
|
450
|
+
for (var n = 0; n < 256; n++) {
|
451
|
+
c = n;
|
452
|
+
for (var k = 0; k < 8; k++) {
|
453
|
+
c = ((c & 1) ? (0xEDB88320 ^ (c >>> 1)) : (c >>> 1));
|
454
|
+
}
|
455
|
+
table[n] = c;
|
456
|
+
}
|
457
|
+
|
458
|
+
return table;
|
459
|
+
}
|
460
|
+
|
461
|
+
// Create table on load. Just 255 signed longs. Not a problem.
|
462
|
+
var crcTable = makeTable();
|
463
|
+
|
464
|
+
|
465
|
+
function crc32(crc, buf, len, pos) {
|
466
|
+
var t = crcTable,
|
467
|
+
end = pos + len;
|
468
|
+
|
469
|
+
crc ^= -1;
|
470
|
+
|
471
|
+
for (var i = pos; i < end; i++) {
|
472
|
+
crc = (crc >>> 8) ^ t[(crc ^ buf[i]) & 0xFF];
|
473
|
+
}
|
474
|
+
|
475
|
+
return (crc ^ (-1)); // >>> 0;
|
476
|
+
}
|
477
|
+
|
478
|
+
|
479
|
+
module.exports = crc32;
|
480
|
+
|
481
|
+
},{}],6:[function(require,module,exports){
|
482
|
+
'use strict';
|
483
|
+
|
484
|
+
// (C) 1995-2013 Jean-loup Gailly and Mark Adler
|
485
|
+
// (C) 2014-2017 Vitaly Puzrin and Andrey Tupitsin
|
486
|
+
//
|
487
|
+
// This software is provided 'as-is', without any express or implied
|
488
|
+
// warranty. In no event will the authors be held liable for any damages
|
489
|
+
// arising from the use of this software.
|
490
|
+
//
|
491
|
+
// Permission is granted to anyone to use this software for any purpose,
|
492
|
+
// including commercial applications, and to alter it and redistribute it
|
493
|
+
// freely, subject to the following restrictions:
|
494
|
+
//
|
495
|
+
// 1. The origin of this software must not be misrepresented; you must not
|
496
|
+
// claim that you wrote the original software. If you use this software
|
497
|
+
// in a product, an acknowledgment in the product documentation would be
|
498
|
+
// appreciated but is not required.
|
499
|
+
// 2. Altered source versions must be plainly marked as such, and must not be
|
500
|
+
// misrepresented as being the original software.
|
501
|
+
// 3. This notice may not be removed or altered from any source distribution.
|
502
|
+
|
503
|
+
function GZheader() {
|
504
|
+
/* true if compressed data believed to be text */
|
505
|
+
this.text = 0;
|
506
|
+
/* modification time */
|
507
|
+
this.time = 0;
|
508
|
+
/* extra flags (not used when writing a gzip file) */
|
509
|
+
this.xflags = 0;
|
510
|
+
/* operating system */
|
511
|
+
this.os = 0;
|
512
|
+
/* pointer to extra field or Z_NULL if none */
|
513
|
+
this.extra = null;
|
514
|
+
/* extra field length (valid if extra != Z_NULL) */
|
515
|
+
this.extra_len = 0; // Actually, we don't need it in JS,
|
516
|
+
// but leave for few code modifications
|
517
|
+
|
518
|
+
//
|
519
|
+
// Setup limits is not necessary because in js we should not preallocate memory
|
520
|
+
// for inflate use constant limit in 65536 bytes
|
521
|
+
//
|
522
|
+
|
523
|
+
/* space at extra (only when reading header) */
|
524
|
+
// this.extra_max = 0;
|
525
|
+
/* pointer to zero-terminated file name or Z_NULL */
|
526
|
+
this.name = '';
|
527
|
+
/* space at name (only when reading header) */
|
528
|
+
// this.name_max = 0;
|
529
|
+
/* pointer to zero-terminated comment or Z_NULL */
|
530
|
+
this.comment = '';
|
531
|
+
/* space at comment (only when reading header) */
|
532
|
+
// this.comm_max = 0;
|
533
|
+
/* true if there was or will be a header crc */
|
534
|
+
this.hcrc = 0;
|
535
|
+
/* true when done reading gzip header (not used when writing a gzip file) */
|
536
|
+
this.done = false;
|
537
|
+
}
|
538
|
+
|
539
|
+
module.exports = GZheader;
|
540
|
+
|
541
|
+
},{}],7:[function(require,module,exports){
|
542
|
+
'use strict';
|
543
|
+
|
544
|
+
// (C) 1995-2013 Jean-loup Gailly and Mark Adler
|
545
|
+
// (C) 2014-2017 Vitaly Puzrin and Andrey Tupitsin
|
546
|
+
//
|
547
|
+
// This software is provided 'as-is', without any express or implied
|
548
|
+
// warranty. In no event will the authors be held liable for any damages
|
549
|
+
// arising from the use of this software.
|
550
|
+
//
|
551
|
+
// Permission is granted to anyone to use this software for any purpose,
|
552
|
+
// including commercial applications, and to alter it and redistribute it
|
553
|
+
// freely, subject to the following restrictions:
|
554
|
+
//
|
555
|
+
// 1. The origin of this software must not be misrepresented; you must not
|
556
|
+
// claim that you wrote the original software. If you use this software
|
557
|
+
// in a product, an acknowledgment in the product documentation would be
|
558
|
+
// appreciated but is not required.
|
559
|
+
// 2. Altered source versions must be plainly marked as such, and must not be
|
560
|
+
// misrepresented as being the original software.
|
561
|
+
// 3. This notice may not be removed or altered from any source distribution.
|
562
|
+
|
563
|
+
// See state defs from inflate.js
|
564
|
+
var BAD = 30; /* got a data error -- remain here until reset */
|
565
|
+
var TYPE = 12; /* i: waiting for type bits, including last-flag bit */
|
566
|
+
|
567
|
+
/*
|
568
|
+
Decode literal, length, and distance codes and write out the resulting
|
569
|
+
literal and match bytes until either not enough input or output is
|
570
|
+
available, an end-of-block is encountered, or a data error is encountered.
|
571
|
+
When large enough input and output buffers are supplied to inflate(), for
|
572
|
+
example, a 16K input buffer and a 64K output buffer, more than 95% of the
|
573
|
+
inflate execution time is spent in this routine.
|
574
|
+
|
575
|
+
Entry assumptions:
|
576
|
+
|
577
|
+
state.mode === LEN
|
578
|
+
strm.avail_in >= 6
|
579
|
+
strm.avail_out >= 258
|
580
|
+
start >= strm.avail_out
|
581
|
+
state.bits < 8
|
582
|
+
|
583
|
+
On return, state.mode is one of:
|
584
|
+
|
585
|
+
LEN -- ran out of enough output space or enough available input
|
586
|
+
TYPE -- reached end of block code, inflate() to interpret next block
|
587
|
+
BAD -- error in block data
|
588
|
+
|
589
|
+
Notes:
|
590
|
+
|
591
|
+
- The maximum input bits used by a length/distance pair is 15 bits for the
|
592
|
+
length code, 5 bits for the length extra, 15 bits for the distance code,
|
593
|
+
and 13 bits for the distance extra. This totals 48 bits, or six bytes.
|
594
|
+
Therefore if strm.avail_in >= 6, then there is enough input to avoid
|
595
|
+
checking for available input while decoding.
|
596
|
+
|
597
|
+
- The maximum bytes that a single length/distance pair can output is 258
|
598
|
+
bytes, which is the maximum length that can be coded. inflate_fast()
|
599
|
+
requires strm.avail_out >= 258 for each loop to avoid checking for
|
600
|
+
output space.
|
601
|
+
*/
|
602
|
+
module.exports = function inflate_fast(strm, start) {
|
603
|
+
var state;
|
604
|
+
var _in; /* local strm.input */
|
605
|
+
var last; /* have enough input while in < last */
|
606
|
+
var _out; /* local strm.output */
|
607
|
+
var beg; /* inflate()'s initial strm.output */
|
608
|
+
var end; /* while out < end, enough space available */
|
609
|
+
//#ifdef INFLATE_STRICT
|
610
|
+
var dmax; /* maximum distance from zlib header */
|
611
|
+
//#endif
|
612
|
+
var wsize; /* window size or zero if not using window */
|
613
|
+
var whave; /* valid bytes in the window */
|
614
|
+
var wnext; /* window write index */
|
615
|
+
// Use `s_window` instead `window`, avoid conflict with instrumentation tools
|
616
|
+
var s_window; /* allocated sliding window, if wsize != 0 */
|
617
|
+
var hold; /* local strm.hold */
|
618
|
+
var bits; /* local strm.bits */
|
619
|
+
var lcode; /* local strm.lencode */
|
620
|
+
var dcode; /* local strm.distcode */
|
621
|
+
var lmask; /* mask for first level of length codes */
|
622
|
+
var dmask; /* mask for first level of distance codes */
|
623
|
+
var here; /* retrieved table entry */
|
624
|
+
var op; /* code bits, operation, extra bits, or */
|
625
|
+
/* window position, window bytes to copy */
|
626
|
+
var len; /* match length, unused bytes */
|
627
|
+
var dist; /* match distance */
|
628
|
+
var from; /* where to copy match from */
|
629
|
+
var from_source;
|
630
|
+
|
631
|
+
|
632
|
+
var input, output; // JS specific, because we have no pointers
|
633
|
+
|
634
|
+
/* copy state to local variables */
|
635
|
+
state = strm.state;
|
636
|
+
//here = state.here;
|
637
|
+
_in = strm.next_in;
|
638
|
+
input = strm.input;
|
639
|
+
last = _in + (strm.avail_in - 5);
|
640
|
+
_out = strm.next_out;
|
641
|
+
output = strm.output;
|
642
|
+
beg = _out - (start - strm.avail_out);
|
643
|
+
end = _out + (strm.avail_out - 257);
|
644
|
+
//#ifdef INFLATE_STRICT
|
645
|
+
dmax = state.dmax;
|
646
|
+
//#endif
|
647
|
+
wsize = state.wsize;
|
648
|
+
whave = state.whave;
|
649
|
+
wnext = state.wnext;
|
650
|
+
s_window = state.window;
|
651
|
+
hold = state.hold;
|
652
|
+
bits = state.bits;
|
653
|
+
lcode = state.lencode;
|
654
|
+
dcode = state.distcode;
|
655
|
+
lmask = (1 << state.lenbits) - 1;
|
656
|
+
dmask = (1 << state.distbits) - 1;
|
657
|
+
|
658
|
+
|
659
|
+
/* decode literals and length/distances until end-of-block or not enough
|
660
|
+
input data or output space */
|
661
|
+
|
662
|
+
top:
|
663
|
+
do {
|
664
|
+
if (bits < 15) {
|
665
|
+
hold += input[_in++] << bits;
|
666
|
+
bits += 8;
|
667
|
+
hold += input[_in++] << bits;
|
668
|
+
bits += 8;
|
669
|
+
}
|
670
|
+
|
671
|
+
here = lcode[hold & lmask];
|
672
|
+
|
673
|
+
dolen:
|
674
|
+
for (;;) { // Goto emulation
|
675
|
+
op = here >>> 24/*here.bits*/;
|
676
|
+
hold >>>= op;
|
677
|
+
bits -= op;
|
678
|
+
op = (here >>> 16) & 0xff/*here.op*/;
|
679
|
+
if (op === 0) { /* literal */
|
680
|
+
//Tracevv((stderr, here.val >= 0x20 && here.val < 0x7f ?
|
681
|
+
// "inflate: literal '%c'\n" :
|
682
|
+
// "inflate: literal 0x%02x\n", here.val));
|
683
|
+
output[_out++] = here & 0xffff/*here.val*/;
|
684
|
+
}
|
685
|
+
else if (op & 16) { /* length base */
|
686
|
+
len = here & 0xffff/*here.val*/;
|
687
|
+
op &= 15; /* number of extra bits */
|
688
|
+
if (op) {
|
689
|
+
if (bits < op) {
|
690
|
+
hold += input[_in++] << bits;
|
691
|
+
bits += 8;
|
692
|
+
}
|
693
|
+
len += hold & ((1 << op) - 1);
|
694
|
+
hold >>>= op;
|
695
|
+
bits -= op;
|
696
|
+
}
|
697
|
+
//Tracevv((stderr, "inflate: length %u\n", len));
|
698
|
+
if (bits < 15) {
|
699
|
+
hold += input[_in++] << bits;
|
700
|
+
bits += 8;
|
701
|
+
hold += input[_in++] << bits;
|
702
|
+
bits += 8;
|
703
|
+
}
|
704
|
+
here = dcode[hold & dmask];
|
705
|
+
|
706
|
+
dodist:
|
707
|
+
for (;;) { // goto emulation
|
708
|
+
op = here >>> 24/*here.bits*/;
|
709
|
+
hold >>>= op;
|
710
|
+
bits -= op;
|
711
|
+
op = (here >>> 16) & 0xff/*here.op*/;
|
712
|
+
|
713
|
+
if (op & 16) { /* distance base */
|
714
|
+
dist = here & 0xffff/*here.val*/;
|
715
|
+
op &= 15; /* number of extra bits */
|
716
|
+
if (bits < op) {
|
717
|
+
hold += input[_in++] << bits;
|
718
|
+
bits += 8;
|
719
|
+
if (bits < op) {
|
720
|
+
hold += input[_in++] << bits;
|
721
|
+
bits += 8;
|
722
|
+
}
|
723
|
+
}
|
724
|
+
dist += hold & ((1 << op) - 1);
|
725
|
+
//#ifdef INFLATE_STRICT
|
726
|
+
if (dist > dmax) {
|
727
|
+
strm.msg = 'invalid distance too far back';
|
728
|
+
state.mode = BAD;
|
729
|
+
break top;
|
730
|
+
}
|
731
|
+
//#endif
|
732
|
+
hold >>>= op;
|
733
|
+
bits -= op;
|
734
|
+
//Tracevv((stderr, "inflate: distance %u\n", dist));
|
735
|
+
op = _out - beg; /* max distance in output */
|
736
|
+
if (dist > op) { /* see if copy from window */
|
737
|
+
op = dist - op; /* distance back in window */
|
738
|
+
if (op > whave) {
|
739
|
+
if (state.sane) {
|
740
|
+
strm.msg = 'invalid distance too far back';
|
741
|
+
state.mode = BAD;
|
742
|
+
break top;
|
743
|
+
}
|
744
|
+
|
745
|
+
// (!) This block is disabled in zlib defaults,
|
746
|
+
// don't enable it for binary compatibility
|
747
|
+
//#ifdef INFLATE_ALLOW_INVALID_DISTANCE_TOOFAR_ARRR
|
748
|
+
// if (len <= op - whave) {
|
749
|
+
// do {
|
750
|
+
// output[_out++] = 0;
|
751
|
+
// } while (--len);
|
752
|
+
// continue top;
|
753
|
+
// }
|
754
|
+
// len -= op - whave;
|
755
|
+
// do {
|
756
|
+
// output[_out++] = 0;
|
757
|
+
// } while (--op > whave);
|
758
|
+
// if (op === 0) {
|
759
|
+
// from = _out - dist;
|
760
|
+
// do {
|
761
|
+
// output[_out++] = output[from++];
|
762
|
+
// } while (--len);
|
763
|
+
// continue top;
|
764
|
+
// }
|
765
|
+
//#endif
|
766
|
+
}
|
767
|
+
from = 0; // window index
|
768
|
+
from_source = s_window;
|
769
|
+
if (wnext === 0) { /* very common case */
|
770
|
+
from += wsize - op;
|
771
|
+
if (op < len) { /* some from window */
|
772
|
+
len -= op;
|
773
|
+
do {
|
774
|
+
output[_out++] = s_window[from++];
|
775
|
+
} while (--op);
|
776
|
+
from = _out - dist; /* rest from output */
|
777
|
+
from_source = output;
|
778
|
+
}
|
779
|
+
}
|
780
|
+
else if (wnext < op) { /* wrap around window */
|
781
|
+
from += wsize + wnext - op;
|
782
|
+
op -= wnext;
|
783
|
+
if (op < len) { /* some from end of window */
|
784
|
+
len -= op;
|
785
|
+
do {
|
786
|
+
output[_out++] = s_window[from++];
|
787
|
+
} while (--op);
|
788
|
+
from = 0;
|
789
|
+
if (wnext < len) { /* some from start of window */
|
790
|
+
op = wnext;
|
791
|
+
len -= op;
|
792
|
+
do {
|
793
|
+
output[_out++] = s_window[from++];
|
794
|
+
} while (--op);
|
795
|
+
from = _out - dist; /* rest from output */
|
796
|
+
from_source = output;
|
797
|
+
}
|
798
|
+
}
|
799
|
+
}
|
800
|
+
else { /* contiguous in window */
|
801
|
+
from += wnext - op;
|
802
|
+
if (op < len) { /* some from window */
|
803
|
+
len -= op;
|
804
|
+
do {
|
805
|
+
output[_out++] = s_window[from++];
|
806
|
+
} while (--op);
|
807
|
+
from = _out - dist; /* rest from output */
|
808
|
+
from_source = output;
|
809
|
+
}
|
810
|
+
}
|
811
|
+
while (len > 2) {
|
812
|
+
output[_out++] = from_source[from++];
|
813
|
+
output[_out++] = from_source[from++];
|
814
|
+
output[_out++] = from_source[from++];
|
815
|
+
len -= 3;
|
816
|
+
}
|
817
|
+
if (len) {
|
818
|
+
output[_out++] = from_source[from++];
|
819
|
+
if (len > 1) {
|
820
|
+
output[_out++] = from_source[from++];
|
821
|
+
}
|
822
|
+
}
|
823
|
+
}
|
824
|
+
else {
|
825
|
+
from = _out - dist; /* copy direct from output */
|
826
|
+
do { /* minimum length is three */
|
827
|
+
output[_out++] = output[from++];
|
828
|
+
output[_out++] = output[from++];
|
829
|
+
output[_out++] = output[from++];
|
830
|
+
len -= 3;
|
831
|
+
} while (len > 2);
|
832
|
+
if (len) {
|
833
|
+
output[_out++] = output[from++];
|
834
|
+
if (len > 1) {
|
835
|
+
output[_out++] = output[from++];
|
836
|
+
}
|
837
|
+
}
|
838
|
+
}
|
839
|
+
}
|
840
|
+
else if ((op & 64) === 0) { /* 2nd level distance code */
|
841
|
+
here = dcode[(here & 0xffff)/*here.val*/ + (hold & ((1 << op) - 1))];
|
842
|
+
continue dodist;
|
843
|
+
}
|
844
|
+
else {
|
845
|
+
strm.msg = 'invalid distance code';
|
846
|
+
state.mode = BAD;
|
847
|
+
break top;
|
848
|
+
}
|
849
|
+
|
850
|
+
break; // need to emulate goto via "continue"
|
851
|
+
}
|
852
|
+
}
|
853
|
+
else if ((op & 64) === 0) { /* 2nd level length code */
|
854
|
+
here = lcode[(here & 0xffff)/*here.val*/ + (hold & ((1 << op) - 1))];
|
855
|
+
continue dolen;
|
856
|
+
}
|
857
|
+
else if (op & 32) { /* end-of-block */
|
858
|
+
//Tracevv((stderr, "inflate: end of block\n"));
|
859
|
+
state.mode = TYPE;
|
860
|
+
break top;
|
861
|
+
}
|
862
|
+
else {
|
863
|
+
strm.msg = 'invalid literal/length code';
|
864
|
+
state.mode = BAD;
|
865
|
+
break top;
|
866
|
+
}
|
867
|
+
|
868
|
+
break; // need to emulate goto via "continue"
|
869
|
+
}
|
870
|
+
} while (_in < last && _out < end);
|
871
|
+
|
872
|
+
/* return unused bytes (on entry, bits < 8, so in won't go too far back) */
|
873
|
+
len = bits >> 3;
|
874
|
+
_in -= len;
|
875
|
+
bits -= len << 3;
|
876
|
+
hold &= (1 << bits) - 1;
|
877
|
+
|
878
|
+
/* update state and return */
|
879
|
+
strm.next_in = _in;
|
880
|
+
strm.next_out = _out;
|
881
|
+
strm.avail_in = (_in < last ? 5 + (last - _in) : 5 - (_in - last));
|
882
|
+
strm.avail_out = (_out < end ? 257 + (end - _out) : 257 - (_out - end));
|
883
|
+
state.hold = hold;
|
884
|
+
state.bits = bits;
|
885
|
+
return;
|
886
|
+
};
|
887
|
+
|
888
|
+
},{}],8:[function(require,module,exports){
|
889
|
+
'use strict';
|
890
|
+
|
891
|
+
// (C) 1995-2013 Jean-loup Gailly and Mark Adler
|
892
|
+
// (C) 2014-2017 Vitaly Puzrin and Andrey Tupitsin
|
893
|
+
//
|
894
|
+
// This software is provided 'as-is', without any express or implied
|
895
|
+
// warranty. In no event will the authors be held liable for any damages
|
896
|
+
// arising from the use of this software.
|
897
|
+
//
|
898
|
+
// Permission is granted to anyone to use this software for any purpose,
|
899
|
+
// including commercial applications, and to alter it and redistribute it
|
900
|
+
// freely, subject to the following restrictions:
|
901
|
+
//
|
902
|
+
// 1. The origin of this software must not be misrepresented; you must not
|
903
|
+
// claim that you wrote the original software. If you use this software
|
904
|
+
// in a product, an acknowledgment in the product documentation would be
|
905
|
+
// appreciated but is not required.
|
906
|
+
// 2. Altered source versions must be plainly marked as such, and must not be
|
907
|
+
// misrepresented as being the original software.
|
908
|
+
// 3. This notice may not be removed or altered from any source distribution.
|
909
|
+
|
910
|
+
var utils = require('../utils/common');
|
911
|
+
var adler32 = require('./adler32');
|
912
|
+
var crc32 = require('./crc32');
|
913
|
+
var inflate_fast = require('./inffast');
|
914
|
+
var inflate_table = require('./inftrees');
|
915
|
+
|
916
|
+
var CODES = 0;
|
917
|
+
var LENS = 1;
|
918
|
+
var DISTS = 2;
|
919
|
+
|
920
|
+
/* Public constants ==========================================================*/
|
921
|
+
/* ===========================================================================*/
|
922
|
+
|
923
|
+
|
924
|
+
/* Allowed flush values; see deflate() and inflate() below for details */
|
925
|
+
//var Z_NO_FLUSH = 0;
|
926
|
+
//var Z_PARTIAL_FLUSH = 1;
|
927
|
+
//var Z_SYNC_FLUSH = 2;
|
928
|
+
//var Z_FULL_FLUSH = 3;
|
929
|
+
var Z_FINISH = 4;
|
930
|
+
var Z_BLOCK = 5;
|
931
|
+
var Z_TREES = 6;
|
932
|
+
|
933
|
+
|
934
|
+
/* Return codes for the compression/decompression functions. Negative values
|
935
|
+
* are errors, positive values are used for special but normal events.
|
936
|
+
*/
|
937
|
+
var Z_OK = 0;
|
938
|
+
var Z_STREAM_END = 1;
|
939
|
+
var Z_NEED_DICT = 2;
|
940
|
+
//var Z_ERRNO = -1;
|
941
|
+
var Z_STREAM_ERROR = -2;
|
942
|
+
var Z_DATA_ERROR = -3;
|
943
|
+
var Z_MEM_ERROR = -4;
|
944
|
+
var Z_BUF_ERROR = -5;
|
945
|
+
//var Z_VERSION_ERROR = -6;
|
946
|
+
|
947
|
+
/* The deflate compression method */
|
948
|
+
var Z_DEFLATED = 8;
|
949
|
+
|
950
|
+
|
951
|
+
/* STATES ====================================================================*/
|
952
|
+
/* ===========================================================================*/
|
953
|
+
|
954
|
+
|
955
|
+
var HEAD = 1; /* i: waiting for magic header */
|
956
|
+
var FLAGS = 2; /* i: waiting for method and flags (gzip) */
|
957
|
+
var TIME = 3; /* i: waiting for modification time (gzip) */
|
958
|
+
var OS = 4; /* i: waiting for extra flags and operating system (gzip) */
|
959
|
+
var EXLEN = 5; /* i: waiting for extra length (gzip) */
|
960
|
+
var EXTRA = 6; /* i: waiting for extra bytes (gzip) */
|
961
|
+
var NAME = 7; /* i: waiting for end of file name (gzip) */
|
962
|
+
var COMMENT = 8; /* i: waiting for end of comment (gzip) */
|
963
|
+
var HCRC = 9; /* i: waiting for header crc (gzip) */
|
964
|
+
var DICTID = 10; /* i: waiting for dictionary check value */
|
965
|
+
var DICT = 11; /* waiting for inflateSetDictionary() call */
|
966
|
+
var TYPE = 12; /* i: waiting for type bits, including last-flag bit */
|
967
|
+
var TYPEDO = 13; /* i: same, but skip check to exit inflate on new block */
|
968
|
+
var STORED = 14; /* i: waiting for stored size (length and complement) */
|
969
|
+
var COPY_ = 15; /* i/o: same as COPY below, but only first time in */
|
970
|
+
var COPY = 16; /* i/o: waiting for input or output to copy stored block */
|
971
|
+
var TABLE = 17; /* i: waiting for dynamic block table lengths */
|
972
|
+
var LENLENS = 18; /* i: waiting for code length code lengths */
|
973
|
+
var CODELENS = 19; /* i: waiting for length/lit and distance code lengths */
|
974
|
+
var LEN_ = 20; /* i: same as LEN below, but only first time in */
|
975
|
+
var LEN = 21; /* i: waiting for length/lit/eob code */
|
976
|
+
var LENEXT = 22; /* i: waiting for length extra bits */
|
977
|
+
var DIST = 23; /* i: waiting for distance code */
|
978
|
+
var DISTEXT = 24; /* i: waiting for distance extra bits */
|
979
|
+
var MATCH = 25; /* o: waiting for output space to copy string */
|
980
|
+
var LIT = 26; /* o: waiting for output space to write literal */
|
981
|
+
var CHECK = 27; /* i: waiting for 32-bit check value */
|
982
|
+
var LENGTH = 28; /* i: waiting for 32-bit length (gzip) */
|
983
|
+
var DONE = 29; /* finished check, done -- remain here until reset */
|
984
|
+
var BAD = 30; /* got a data error -- remain here until reset */
|
985
|
+
var MEM = 31; /* got an inflate() memory error -- remain here until reset */
|
986
|
+
var SYNC = 32; /* looking for synchronization bytes to restart inflate() */
|
987
|
+
|
988
|
+
/* ===========================================================================*/
|
989
|
+
|
990
|
+
|
991
|
+
|
992
|
+
var ENOUGH_LENS = 852;
|
993
|
+
var ENOUGH_DISTS = 592;
|
994
|
+
//var ENOUGH = (ENOUGH_LENS+ENOUGH_DISTS);
|
995
|
+
|
996
|
+
var MAX_WBITS = 15;
|
997
|
+
/* 32K LZ77 window */
|
998
|
+
var DEF_WBITS = MAX_WBITS;
|
999
|
+
|
1000
|
+
|
1001
|
+
function zswap32(q) {
|
1002
|
+
return (((q >>> 24) & 0xff) +
|
1003
|
+
((q >>> 8) & 0xff00) +
|
1004
|
+
((q & 0xff00) << 8) +
|
1005
|
+
((q & 0xff) << 24));
|
1006
|
+
}
|
1007
|
+
|
1008
|
+
|
1009
|
+
function InflateState() {
|
1010
|
+
this.mode = 0; /* current inflate mode */
|
1011
|
+
this.last = false; /* true if processing last block */
|
1012
|
+
this.wrap = 0; /* bit 0 true for zlib, bit 1 true for gzip */
|
1013
|
+
this.havedict = false; /* true if dictionary provided */
|
1014
|
+
this.flags = 0; /* gzip header method and flags (0 if zlib) */
|
1015
|
+
this.dmax = 0; /* zlib header max distance (INFLATE_STRICT) */
|
1016
|
+
this.check = 0; /* protected copy of check value */
|
1017
|
+
this.total = 0; /* protected copy of output count */
|
1018
|
+
// TODO: may be {}
|
1019
|
+
this.head = null; /* where to save gzip header information */
|
1020
|
+
|
1021
|
+
/* sliding window */
|
1022
|
+
this.wbits = 0; /* log base 2 of requested window size */
|
1023
|
+
this.wsize = 0; /* window size or zero if not using window */
|
1024
|
+
this.whave = 0; /* valid bytes in the window */
|
1025
|
+
this.wnext = 0; /* window write index */
|
1026
|
+
this.window = null; /* allocated sliding window, if needed */
|
1027
|
+
|
1028
|
+
/* bit accumulator */
|
1029
|
+
this.hold = 0; /* input bit accumulator */
|
1030
|
+
this.bits = 0; /* number of bits in "in" */
|
1031
|
+
|
1032
|
+
/* for string and stored block copying */
|
1033
|
+
this.length = 0; /* literal or length of data to copy */
|
1034
|
+
this.offset = 0; /* distance back to copy string from */
|
1035
|
+
|
1036
|
+
/* for table and code decoding */
|
1037
|
+
this.extra = 0; /* extra bits needed */
|
1038
|
+
|
1039
|
+
/* fixed and dynamic code tables */
|
1040
|
+
this.lencode = null; /* starting table for length/literal codes */
|
1041
|
+
this.distcode = null; /* starting table for distance codes */
|
1042
|
+
this.lenbits = 0; /* index bits for lencode */
|
1043
|
+
this.distbits = 0; /* index bits for distcode */
|
1044
|
+
|
1045
|
+
/* dynamic table building */
|
1046
|
+
this.ncode = 0; /* number of code length code lengths */
|
1047
|
+
this.nlen = 0; /* number of length code lengths */
|
1048
|
+
this.ndist = 0; /* number of distance code lengths */
|
1049
|
+
this.have = 0; /* number of code lengths in lens[] */
|
1050
|
+
this.next = null; /* next available space in codes[] */
|
1051
|
+
|
1052
|
+
this.lens = new utils.Buf16(320); /* temporary storage for code lengths */
|
1053
|
+
this.work = new utils.Buf16(288); /* work area for code table building */
|
1054
|
+
|
1055
|
+
/*
|
1056
|
+
because we don't have pointers in js, we use lencode and distcode directly
|
1057
|
+
as buffers so we don't need codes
|
1058
|
+
*/
|
1059
|
+
//this.codes = new utils.Buf32(ENOUGH); /* space for code tables */
|
1060
|
+
this.lendyn = null; /* dynamic table for length/literal codes (JS specific) */
|
1061
|
+
this.distdyn = null; /* dynamic table for distance codes (JS specific) */
|
1062
|
+
this.sane = 0; /* if false, allow invalid distance too far */
|
1063
|
+
this.back = 0; /* bits back of last unprocessed length/lit */
|
1064
|
+
this.was = 0; /* initial length of match */
|
1065
|
+
}
|
1066
|
+
|
1067
|
+
function inflateResetKeep(strm) {
|
1068
|
+
var state;
|
1069
|
+
|
1070
|
+
if (!strm || !strm.state) { return Z_STREAM_ERROR; }
|
1071
|
+
state = strm.state;
|
1072
|
+
strm.total_in = strm.total_out = state.total = 0;
|
1073
|
+
strm.msg = ''; /*Z_NULL*/
|
1074
|
+
if (state.wrap) { /* to support ill-conceived Java test suite */
|
1075
|
+
strm.adler = state.wrap & 1;
|
1076
|
+
}
|
1077
|
+
state.mode = HEAD;
|
1078
|
+
state.last = 0;
|
1079
|
+
state.havedict = 0;
|
1080
|
+
state.dmax = 32768;
|
1081
|
+
state.head = null/*Z_NULL*/;
|
1082
|
+
state.hold = 0;
|
1083
|
+
state.bits = 0;
|
1084
|
+
//state.lencode = state.distcode = state.next = state.codes;
|
1085
|
+
state.lencode = state.lendyn = new utils.Buf32(ENOUGH_LENS);
|
1086
|
+
state.distcode = state.distdyn = new utils.Buf32(ENOUGH_DISTS);
|
1087
|
+
|
1088
|
+
state.sane = 1;
|
1089
|
+
state.back = -1;
|
1090
|
+
//Tracev((stderr, "inflate: reset\n"));
|
1091
|
+
return Z_OK;
|
1092
|
+
}
|
1093
|
+
|
1094
|
+
function inflateReset(strm) {
|
1095
|
+
var state;
|
1096
|
+
|
1097
|
+
if (!strm || !strm.state) { return Z_STREAM_ERROR; }
|
1098
|
+
state = strm.state;
|
1099
|
+
state.wsize = 0;
|
1100
|
+
state.whave = 0;
|
1101
|
+
state.wnext = 0;
|
1102
|
+
return inflateResetKeep(strm);
|
1103
|
+
|
1104
|
+
}
|
1105
|
+
|
1106
|
+
function inflateReset2(strm, windowBits) {
|
1107
|
+
var wrap;
|
1108
|
+
var state;
|
1109
|
+
|
1110
|
+
/* get the state */
|
1111
|
+
if (!strm || !strm.state) { return Z_STREAM_ERROR; }
|
1112
|
+
state = strm.state;
|
1113
|
+
|
1114
|
+
/* extract wrap request from windowBits parameter */
|
1115
|
+
if (windowBits < 0) {
|
1116
|
+
wrap = 0;
|
1117
|
+
windowBits = -windowBits;
|
1118
|
+
}
|
1119
|
+
else {
|
1120
|
+
wrap = (windowBits >> 4) + 1;
|
1121
|
+
if (windowBits < 48) {
|
1122
|
+
windowBits &= 15;
|
1123
|
+
}
|
1124
|
+
}
|
1125
|
+
|
1126
|
+
/* set number of window bits, free window if different */
|
1127
|
+
if (windowBits && (windowBits < 8 || windowBits > 15)) {
|
1128
|
+
return Z_STREAM_ERROR;
|
1129
|
+
}
|
1130
|
+
if (state.window !== null && state.wbits !== windowBits) {
|
1131
|
+
state.window = null;
|
1132
|
+
}
|
1133
|
+
|
1134
|
+
/* update state and reset the rest of it */
|
1135
|
+
state.wrap = wrap;
|
1136
|
+
state.wbits = windowBits;
|
1137
|
+
return inflateReset(strm);
|
1138
|
+
}
|
1139
|
+
|
1140
|
+
function inflateInit2(strm, windowBits) {
|
1141
|
+
var ret;
|
1142
|
+
var state;
|
1143
|
+
|
1144
|
+
if (!strm) { return Z_STREAM_ERROR; }
|
1145
|
+
//strm.msg = Z_NULL; /* in case we return an error */
|
1146
|
+
|
1147
|
+
state = new InflateState();
|
1148
|
+
|
1149
|
+
//if (state === Z_NULL) return Z_MEM_ERROR;
|
1150
|
+
//Tracev((stderr, "inflate: allocated\n"));
|
1151
|
+
strm.state = state;
|
1152
|
+
state.window = null/*Z_NULL*/;
|
1153
|
+
ret = inflateReset2(strm, windowBits);
|
1154
|
+
if (ret !== Z_OK) {
|
1155
|
+
strm.state = null/*Z_NULL*/;
|
1156
|
+
}
|
1157
|
+
return ret;
|
1158
|
+
}
|
1159
|
+
|
1160
|
+
function inflateInit(strm) {
|
1161
|
+
return inflateInit2(strm, DEF_WBITS);
|
1162
|
+
}
|
1163
|
+
|
1164
|
+
|
1165
|
+
/*
|
1166
|
+
Return state with length and distance decoding tables and index sizes set to
|
1167
|
+
fixed code decoding. Normally this returns fixed tables from inffixed.h.
|
1168
|
+
If BUILDFIXED is defined, then instead this routine builds the tables the
|
1169
|
+
first time it's called, and returns those tables the first time and
|
1170
|
+
thereafter. This reduces the size of the code by about 2K bytes, in
|
1171
|
+
exchange for a little execution time. However, BUILDFIXED should not be
|
1172
|
+
used for threaded applications, since the rewriting of the tables and virgin
|
1173
|
+
may not be thread-safe.
|
1174
|
+
*/
|
1175
|
+
var virgin = true;
|
1176
|
+
|
1177
|
+
var lenfix, distfix; // We have no pointers in JS, so keep tables separate
|
1178
|
+
|
1179
|
+
function fixedtables(state) {
|
1180
|
+
/* build fixed huffman tables if first call (may not be thread safe) */
|
1181
|
+
if (virgin) {
|
1182
|
+
var sym;
|
1183
|
+
|
1184
|
+
lenfix = new utils.Buf32(512);
|
1185
|
+
distfix = new utils.Buf32(32);
|
1186
|
+
|
1187
|
+
/* literal/length table */
|
1188
|
+
sym = 0;
|
1189
|
+
while (sym < 144) { state.lens[sym++] = 8; }
|
1190
|
+
while (sym < 256) { state.lens[sym++] = 9; }
|
1191
|
+
while (sym < 280) { state.lens[sym++] = 7; }
|
1192
|
+
while (sym < 288) { state.lens[sym++] = 8; }
|
1193
|
+
|
1194
|
+
inflate_table(LENS, state.lens, 0, 288, lenfix, 0, state.work, { bits: 9 });
|
1195
|
+
|
1196
|
+
/* distance table */
|
1197
|
+
sym = 0;
|
1198
|
+
while (sym < 32) { state.lens[sym++] = 5; }
|
1199
|
+
|
1200
|
+
inflate_table(DISTS, state.lens, 0, 32, distfix, 0, state.work, { bits: 5 });
|
1201
|
+
|
1202
|
+
/* do this just once */
|
1203
|
+
virgin = false;
|
1204
|
+
}
|
1205
|
+
|
1206
|
+
state.lencode = lenfix;
|
1207
|
+
state.lenbits = 9;
|
1208
|
+
state.distcode = distfix;
|
1209
|
+
state.distbits = 5;
|
1210
|
+
}
|
1211
|
+
|
1212
|
+
|
1213
|
+
/*
|
1214
|
+
Update the window with the last wsize (normally 32K) bytes written before
|
1215
|
+
returning. If window does not exist yet, create it. This is only called
|
1216
|
+
when a window is already in use, or when output has been written during this
|
1217
|
+
inflate call, but the end of the deflate stream has not been reached yet.
|
1218
|
+
It is also called to create a window for dictionary data when a dictionary
|
1219
|
+
is loaded.
|
1220
|
+
|
1221
|
+
Providing output buffers larger than 32K to inflate() should provide a speed
|
1222
|
+
advantage, since only the last 32K of output is copied to the sliding window
|
1223
|
+
upon return from inflate(), and since all distances after the first 32K of
|
1224
|
+
output will fall in the output data, making match copies simpler and faster.
|
1225
|
+
The advantage may be dependent on the size of the processor's data caches.
|
1226
|
+
*/
|
1227
|
+
function updatewindow(strm, src, end, copy) {
|
1228
|
+
var dist;
|
1229
|
+
var state = strm.state;
|
1230
|
+
|
1231
|
+
/* if it hasn't been done already, allocate space for the window */
|
1232
|
+
if (state.window === null) {
|
1233
|
+
state.wsize = 1 << state.wbits;
|
1234
|
+
state.wnext = 0;
|
1235
|
+
state.whave = 0;
|
1236
|
+
|
1237
|
+
state.window = new utils.Buf8(state.wsize);
|
1238
|
+
}
|
1239
|
+
|
1240
|
+
/* copy state->wsize or less output bytes into the circular window */
|
1241
|
+
if (copy >= state.wsize) {
|
1242
|
+
utils.arraySet(state.window, src, end - state.wsize, state.wsize, 0);
|
1243
|
+
state.wnext = 0;
|
1244
|
+
state.whave = state.wsize;
|
1245
|
+
}
|
1246
|
+
else {
|
1247
|
+
dist = state.wsize - state.wnext;
|
1248
|
+
if (dist > copy) {
|
1249
|
+
dist = copy;
|
1250
|
+
}
|
1251
|
+
//zmemcpy(state->window + state->wnext, end - copy, dist);
|
1252
|
+
utils.arraySet(state.window, src, end - copy, dist, state.wnext);
|
1253
|
+
copy -= dist;
|
1254
|
+
if (copy) {
|
1255
|
+
//zmemcpy(state->window, end - copy, copy);
|
1256
|
+
utils.arraySet(state.window, src, end - copy, copy, 0);
|
1257
|
+
state.wnext = copy;
|
1258
|
+
state.whave = state.wsize;
|
1259
|
+
}
|
1260
|
+
else {
|
1261
|
+
state.wnext += dist;
|
1262
|
+
if (state.wnext === state.wsize) { state.wnext = 0; }
|
1263
|
+
if (state.whave < state.wsize) { state.whave += dist; }
|
1264
|
+
}
|
1265
|
+
}
|
1266
|
+
return 0;
|
1267
|
+
}
|
1268
|
+
|
1269
|
+
function inflate(strm, flush) {
|
1270
|
+
var state;
|
1271
|
+
var input, output; // input/output buffers
|
1272
|
+
var next; /* next input INDEX */
|
1273
|
+
var put; /* next output INDEX */
|
1274
|
+
var have, left; /* available input and output */
|
1275
|
+
var hold; /* bit buffer */
|
1276
|
+
var bits; /* bits in bit buffer */
|
1277
|
+
var _in, _out; /* save starting available input and output */
|
1278
|
+
var copy; /* number of stored or match bytes to copy */
|
1279
|
+
var from; /* where to copy match bytes from */
|
1280
|
+
var from_source;
|
1281
|
+
var here = 0; /* current decoding table entry */
|
1282
|
+
var here_bits, here_op, here_val; // paked "here" denormalized (JS specific)
|
1283
|
+
//var last; /* parent table entry */
|
1284
|
+
var last_bits, last_op, last_val; // paked "last" denormalized (JS specific)
|
1285
|
+
var len; /* length to copy for repeats, bits to drop */
|
1286
|
+
var ret; /* return code */
|
1287
|
+
var hbuf = new utils.Buf8(4); /* buffer for gzip header crc calculation */
|
1288
|
+
var opts;
|
1289
|
+
|
1290
|
+
var n; // temporary var for NEED_BITS
|
1291
|
+
|
1292
|
+
var order = /* permutation of code lengths */
|
1293
|
+
[ 16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15 ];
|
1294
|
+
|
1295
|
+
|
1296
|
+
if (!strm || !strm.state || !strm.output ||
|
1297
|
+
(!strm.input && strm.avail_in !== 0)) {
|
1298
|
+
return Z_STREAM_ERROR;
|
1299
|
+
}
|
1300
|
+
|
1301
|
+
state = strm.state;
|
1302
|
+
if (state.mode === TYPE) { state.mode = TYPEDO; } /* skip check */
|
1303
|
+
|
1304
|
+
|
1305
|
+
//--- LOAD() ---
|
1306
|
+
put = strm.next_out;
|
1307
|
+
output = strm.output;
|
1308
|
+
left = strm.avail_out;
|
1309
|
+
next = strm.next_in;
|
1310
|
+
input = strm.input;
|
1311
|
+
have = strm.avail_in;
|
1312
|
+
hold = state.hold;
|
1313
|
+
bits = state.bits;
|
1314
|
+
//---
|
1315
|
+
|
1316
|
+
_in = have;
|
1317
|
+
_out = left;
|
1318
|
+
ret = Z_OK;
|
1319
|
+
|
1320
|
+
inf_leave: // goto emulation
|
1321
|
+
for (;;) {
|
1322
|
+
switch (state.mode) {
|
1323
|
+
case HEAD:
|
1324
|
+
if (state.wrap === 0) {
|
1325
|
+
state.mode = TYPEDO;
|
1326
|
+
break;
|
1327
|
+
}
|
1328
|
+
//=== NEEDBITS(16);
|
1329
|
+
while (bits < 16) {
|
1330
|
+
if (have === 0) { break inf_leave; }
|
1331
|
+
have--;
|
1332
|
+
hold += input[next++] << bits;
|
1333
|
+
bits += 8;
|
1334
|
+
}
|
1335
|
+
//===//
|
1336
|
+
if ((state.wrap & 2) && hold === 0x8b1f) { /* gzip header */
|
1337
|
+
state.check = 0/*crc32(0L, Z_NULL, 0)*/;
|
1338
|
+
//=== CRC2(state.check, hold);
|
1339
|
+
hbuf[0] = hold & 0xff;
|
1340
|
+
hbuf[1] = (hold >>> 8) & 0xff;
|
1341
|
+
state.check = crc32(state.check, hbuf, 2, 0);
|
1342
|
+
//===//
|
1343
|
+
|
1344
|
+
//=== INITBITS();
|
1345
|
+
hold = 0;
|
1346
|
+
bits = 0;
|
1347
|
+
//===//
|
1348
|
+
state.mode = FLAGS;
|
1349
|
+
break;
|
1350
|
+
}
|
1351
|
+
state.flags = 0; /* expect zlib header */
|
1352
|
+
if (state.head) {
|
1353
|
+
state.head.done = false;
|
1354
|
+
}
|
1355
|
+
if (!(state.wrap & 1) || /* check if zlib header allowed */
|
1356
|
+
(((hold & 0xff)/*BITS(8)*/ << 8) + (hold >> 8)) % 31) {
|
1357
|
+
strm.msg = 'incorrect header check';
|
1358
|
+
state.mode = BAD;
|
1359
|
+
break;
|
1360
|
+
}
|
1361
|
+
if ((hold & 0x0f)/*BITS(4)*/ !== Z_DEFLATED) {
|
1362
|
+
strm.msg = 'unknown compression method';
|
1363
|
+
state.mode = BAD;
|
1364
|
+
break;
|
1365
|
+
}
|
1366
|
+
//--- DROPBITS(4) ---//
|
1367
|
+
hold >>>= 4;
|
1368
|
+
bits -= 4;
|
1369
|
+
//---//
|
1370
|
+
len = (hold & 0x0f)/*BITS(4)*/ + 8;
|
1371
|
+
if (state.wbits === 0) {
|
1372
|
+
state.wbits = len;
|
1373
|
+
}
|
1374
|
+
else if (len > state.wbits) {
|
1375
|
+
strm.msg = 'invalid window size';
|
1376
|
+
state.mode = BAD;
|
1377
|
+
break;
|
1378
|
+
}
|
1379
|
+
state.dmax = 1 << len;
|
1380
|
+
//Tracev((stderr, "inflate: zlib header ok\n"));
|
1381
|
+
strm.adler = state.check = 1/*adler32(0L, Z_NULL, 0)*/;
|
1382
|
+
state.mode = hold & 0x200 ? DICTID : TYPE;
|
1383
|
+
//=== INITBITS();
|
1384
|
+
hold = 0;
|
1385
|
+
bits = 0;
|
1386
|
+
//===//
|
1387
|
+
break;
|
1388
|
+
case FLAGS:
|
1389
|
+
//=== NEEDBITS(16); */
|
1390
|
+
while (bits < 16) {
|
1391
|
+
if (have === 0) { break inf_leave; }
|
1392
|
+
have--;
|
1393
|
+
hold += input[next++] << bits;
|
1394
|
+
bits += 8;
|
1395
|
+
}
|
1396
|
+
//===//
|
1397
|
+
state.flags = hold;
|
1398
|
+
if ((state.flags & 0xff) !== Z_DEFLATED) {
|
1399
|
+
strm.msg = 'unknown compression method';
|
1400
|
+
state.mode = BAD;
|
1401
|
+
break;
|
1402
|
+
}
|
1403
|
+
if (state.flags & 0xe000) {
|
1404
|
+
strm.msg = 'unknown header flags set';
|
1405
|
+
state.mode = BAD;
|
1406
|
+
break;
|
1407
|
+
}
|
1408
|
+
if (state.head) {
|
1409
|
+
state.head.text = ((hold >> 8) & 1);
|
1410
|
+
}
|
1411
|
+
if (state.flags & 0x0200) {
|
1412
|
+
//=== CRC2(state.check, hold);
|
1413
|
+
hbuf[0] = hold & 0xff;
|
1414
|
+
hbuf[1] = (hold >>> 8) & 0xff;
|
1415
|
+
state.check = crc32(state.check, hbuf, 2, 0);
|
1416
|
+
//===//
|
1417
|
+
}
|
1418
|
+
//=== INITBITS();
|
1419
|
+
hold = 0;
|
1420
|
+
bits = 0;
|
1421
|
+
//===//
|
1422
|
+
state.mode = TIME;
|
1423
|
+
/* falls through */
|
1424
|
+
case TIME:
|
1425
|
+
//=== NEEDBITS(32); */
|
1426
|
+
while (bits < 32) {
|
1427
|
+
if (have === 0) { break inf_leave; }
|
1428
|
+
have--;
|
1429
|
+
hold += input[next++] << bits;
|
1430
|
+
bits += 8;
|
1431
|
+
}
|
1432
|
+
//===//
|
1433
|
+
if (state.head) {
|
1434
|
+
state.head.time = hold;
|
1435
|
+
}
|
1436
|
+
if (state.flags & 0x0200) {
|
1437
|
+
//=== CRC4(state.check, hold)
|
1438
|
+
hbuf[0] = hold & 0xff;
|
1439
|
+
hbuf[1] = (hold >>> 8) & 0xff;
|
1440
|
+
hbuf[2] = (hold >>> 16) & 0xff;
|
1441
|
+
hbuf[3] = (hold >>> 24) & 0xff;
|
1442
|
+
state.check = crc32(state.check, hbuf, 4, 0);
|
1443
|
+
//===
|
1444
|
+
}
|
1445
|
+
//=== INITBITS();
|
1446
|
+
hold = 0;
|
1447
|
+
bits = 0;
|
1448
|
+
//===//
|
1449
|
+
state.mode = OS;
|
1450
|
+
/* falls through */
|
1451
|
+
case OS:
|
1452
|
+
//=== NEEDBITS(16); */
|
1453
|
+
while (bits < 16) {
|
1454
|
+
if (have === 0) { break inf_leave; }
|
1455
|
+
have--;
|
1456
|
+
hold += input[next++] << bits;
|
1457
|
+
bits += 8;
|
1458
|
+
}
|
1459
|
+
//===//
|
1460
|
+
if (state.head) {
|
1461
|
+
state.head.xflags = (hold & 0xff);
|
1462
|
+
state.head.os = (hold >> 8);
|
1463
|
+
}
|
1464
|
+
if (state.flags & 0x0200) {
|
1465
|
+
//=== CRC2(state.check, hold);
|
1466
|
+
hbuf[0] = hold & 0xff;
|
1467
|
+
hbuf[1] = (hold >>> 8) & 0xff;
|
1468
|
+
state.check = crc32(state.check, hbuf, 2, 0);
|
1469
|
+
//===//
|
1470
|
+
}
|
1471
|
+
//=== INITBITS();
|
1472
|
+
hold = 0;
|
1473
|
+
bits = 0;
|
1474
|
+
//===//
|
1475
|
+
state.mode = EXLEN;
|
1476
|
+
/* falls through */
|
1477
|
+
case EXLEN:
|
1478
|
+
if (state.flags & 0x0400) {
|
1479
|
+
//=== NEEDBITS(16); */
|
1480
|
+
while (bits < 16) {
|
1481
|
+
if (have === 0) { break inf_leave; }
|
1482
|
+
have--;
|
1483
|
+
hold += input[next++] << bits;
|
1484
|
+
bits += 8;
|
1485
|
+
}
|
1486
|
+
//===//
|
1487
|
+
state.length = hold;
|
1488
|
+
if (state.head) {
|
1489
|
+
state.head.extra_len = hold;
|
1490
|
+
}
|
1491
|
+
if (state.flags & 0x0200) {
|
1492
|
+
//=== CRC2(state.check, hold);
|
1493
|
+
hbuf[0] = hold & 0xff;
|
1494
|
+
hbuf[1] = (hold >>> 8) & 0xff;
|
1495
|
+
state.check = crc32(state.check, hbuf, 2, 0);
|
1496
|
+
//===//
|
1497
|
+
}
|
1498
|
+
//=== INITBITS();
|
1499
|
+
hold = 0;
|
1500
|
+
bits = 0;
|
1501
|
+
//===//
|
1502
|
+
}
|
1503
|
+
else if (state.head) {
|
1504
|
+
state.head.extra = null/*Z_NULL*/;
|
1505
|
+
}
|
1506
|
+
state.mode = EXTRA;
|
1507
|
+
/* falls through */
|
1508
|
+
case EXTRA:
|
1509
|
+
if (state.flags & 0x0400) {
|
1510
|
+
copy = state.length;
|
1511
|
+
if (copy > have) { copy = have; }
|
1512
|
+
if (copy) {
|
1513
|
+
if (state.head) {
|
1514
|
+
len = state.head.extra_len - state.length;
|
1515
|
+
if (!state.head.extra) {
|
1516
|
+
// Use untyped array for more convenient processing later
|
1517
|
+
state.head.extra = new Array(state.head.extra_len);
|
1518
|
+
}
|
1519
|
+
utils.arraySet(
|
1520
|
+
state.head.extra,
|
1521
|
+
input,
|
1522
|
+
next,
|
1523
|
+
// extra field is limited to 65536 bytes
|
1524
|
+
// - no need for additional size check
|
1525
|
+
copy,
|
1526
|
+
/*len + copy > state.head.extra_max - len ? state.head.extra_max : copy,*/
|
1527
|
+
len
|
1528
|
+
);
|
1529
|
+
//zmemcpy(state.head.extra + len, next,
|
1530
|
+
// len + copy > state.head.extra_max ?
|
1531
|
+
// state.head.extra_max - len : copy);
|
1532
|
+
}
|
1533
|
+
if (state.flags & 0x0200) {
|
1534
|
+
state.check = crc32(state.check, input, copy, next);
|
1535
|
+
}
|
1536
|
+
have -= copy;
|
1537
|
+
next += copy;
|
1538
|
+
state.length -= copy;
|
1539
|
+
}
|
1540
|
+
if (state.length) { break inf_leave; }
|
1541
|
+
}
|
1542
|
+
state.length = 0;
|
1543
|
+
state.mode = NAME;
|
1544
|
+
/* falls through */
|
1545
|
+
case NAME:
|
1546
|
+
if (state.flags & 0x0800) {
|
1547
|
+
if (have === 0) { break inf_leave; }
|
1548
|
+
copy = 0;
|
1549
|
+
do {
|
1550
|
+
// TODO: 2 or 1 bytes?
|
1551
|
+
len = input[next + copy++];
|
1552
|
+
/* use constant limit because in js we should not preallocate memory */
|
1553
|
+
if (state.head && len &&
|
1554
|
+
(state.length < 65536 /*state.head.name_max*/)) {
|
1555
|
+
state.head.name += String.fromCharCode(len);
|
1556
|
+
}
|
1557
|
+
} while (len && copy < have);
|
1558
|
+
|
1559
|
+
if (state.flags & 0x0200) {
|
1560
|
+
state.check = crc32(state.check, input, copy, next);
|
1561
|
+
}
|
1562
|
+
have -= copy;
|
1563
|
+
next += copy;
|
1564
|
+
if (len) { break inf_leave; }
|
1565
|
+
}
|
1566
|
+
else if (state.head) {
|
1567
|
+
state.head.name = null;
|
1568
|
+
}
|
1569
|
+
state.length = 0;
|
1570
|
+
state.mode = COMMENT;
|
1571
|
+
/* falls through */
|
1572
|
+
case COMMENT:
|
1573
|
+
if (state.flags & 0x1000) {
|
1574
|
+
if (have === 0) { break inf_leave; }
|
1575
|
+
copy = 0;
|
1576
|
+
do {
|
1577
|
+
len = input[next + copy++];
|
1578
|
+
/* use constant limit because in js we should not preallocate memory */
|
1579
|
+
if (state.head && len &&
|
1580
|
+
(state.length < 65536 /*state.head.comm_max*/)) {
|
1581
|
+
state.head.comment += String.fromCharCode(len);
|
1582
|
+
}
|
1583
|
+
} while (len && copy < have);
|
1584
|
+
if (state.flags & 0x0200) {
|
1585
|
+
state.check = crc32(state.check, input, copy, next);
|
1586
|
+
}
|
1587
|
+
have -= copy;
|
1588
|
+
next += copy;
|
1589
|
+
if (len) { break inf_leave; }
|
1590
|
+
}
|
1591
|
+
else if (state.head) {
|
1592
|
+
state.head.comment = null;
|
1593
|
+
}
|
1594
|
+
state.mode = HCRC;
|
1595
|
+
/* falls through */
|
1596
|
+
case HCRC:
|
1597
|
+
if (state.flags & 0x0200) {
|
1598
|
+
//=== NEEDBITS(16); */
|
1599
|
+
while (bits < 16) {
|
1600
|
+
if (have === 0) { break inf_leave; }
|
1601
|
+
have--;
|
1602
|
+
hold += input[next++] << bits;
|
1603
|
+
bits += 8;
|
1604
|
+
}
|
1605
|
+
//===//
|
1606
|
+
if (hold !== (state.check & 0xffff)) {
|
1607
|
+
strm.msg = 'header crc mismatch';
|
1608
|
+
state.mode = BAD;
|
1609
|
+
break;
|
1610
|
+
}
|
1611
|
+
//=== INITBITS();
|
1612
|
+
hold = 0;
|
1613
|
+
bits = 0;
|
1614
|
+
//===//
|
1615
|
+
}
|
1616
|
+
if (state.head) {
|
1617
|
+
state.head.hcrc = ((state.flags >> 9) & 1);
|
1618
|
+
state.head.done = true;
|
1619
|
+
}
|
1620
|
+
strm.adler = state.check = 0;
|
1621
|
+
state.mode = TYPE;
|
1622
|
+
break;
|
1623
|
+
case DICTID:
|
1624
|
+
//=== NEEDBITS(32); */
|
1625
|
+
while (bits < 32) {
|
1626
|
+
if (have === 0) { break inf_leave; }
|
1627
|
+
have--;
|
1628
|
+
hold += input[next++] << bits;
|
1629
|
+
bits += 8;
|
1630
|
+
}
|
1631
|
+
//===//
|
1632
|
+
strm.adler = state.check = zswap32(hold);
|
1633
|
+
//=== INITBITS();
|
1634
|
+
hold = 0;
|
1635
|
+
bits = 0;
|
1636
|
+
//===//
|
1637
|
+
state.mode = DICT;
|
1638
|
+
/* falls through */
|
1639
|
+
case DICT:
|
1640
|
+
if (state.havedict === 0) {
|
1641
|
+
//--- RESTORE() ---
|
1642
|
+
strm.next_out = put;
|
1643
|
+
strm.avail_out = left;
|
1644
|
+
strm.next_in = next;
|
1645
|
+
strm.avail_in = have;
|
1646
|
+
state.hold = hold;
|
1647
|
+
state.bits = bits;
|
1648
|
+
//---
|
1649
|
+
return Z_NEED_DICT;
|
1650
|
+
}
|
1651
|
+
strm.adler = state.check = 1/*adler32(0L, Z_NULL, 0)*/;
|
1652
|
+
state.mode = TYPE;
|
1653
|
+
/* falls through */
|
1654
|
+
case TYPE:
|
1655
|
+
if (flush === Z_BLOCK || flush === Z_TREES) { break inf_leave; }
|
1656
|
+
/* falls through */
|
1657
|
+
case TYPEDO:
|
1658
|
+
if (state.last) {
|
1659
|
+
//--- BYTEBITS() ---//
|
1660
|
+
hold >>>= bits & 7;
|
1661
|
+
bits -= bits & 7;
|
1662
|
+
//---//
|
1663
|
+
state.mode = CHECK;
|
1664
|
+
break;
|
1665
|
+
}
|
1666
|
+
//=== NEEDBITS(3); */
|
1667
|
+
while (bits < 3) {
|
1668
|
+
if (have === 0) { break inf_leave; }
|
1669
|
+
have--;
|
1670
|
+
hold += input[next++] << bits;
|
1671
|
+
bits += 8;
|
1672
|
+
}
|
1673
|
+
//===//
|
1674
|
+
state.last = (hold & 0x01)/*BITS(1)*/;
|
1675
|
+
//--- DROPBITS(1) ---//
|
1676
|
+
hold >>>= 1;
|
1677
|
+
bits -= 1;
|
1678
|
+
//---//
|
1679
|
+
|
1680
|
+
switch ((hold & 0x03)/*BITS(2)*/) {
|
1681
|
+
case 0: /* stored block */
|
1682
|
+
//Tracev((stderr, "inflate: stored block%s\n",
|
1683
|
+
// state.last ? " (last)" : ""));
|
1684
|
+
state.mode = STORED;
|
1685
|
+
break;
|
1686
|
+
case 1: /* fixed block */
|
1687
|
+
fixedtables(state);
|
1688
|
+
//Tracev((stderr, "inflate: fixed codes block%s\n",
|
1689
|
+
// state.last ? " (last)" : ""));
|
1690
|
+
state.mode = LEN_; /* decode codes */
|
1691
|
+
if (flush === Z_TREES) {
|
1692
|
+
//--- DROPBITS(2) ---//
|
1693
|
+
hold >>>= 2;
|
1694
|
+
bits -= 2;
|
1695
|
+
//---//
|
1696
|
+
break inf_leave;
|
1697
|
+
}
|
1698
|
+
break;
|
1699
|
+
case 2: /* dynamic block */
|
1700
|
+
//Tracev((stderr, "inflate: dynamic codes block%s\n",
|
1701
|
+
// state.last ? " (last)" : ""));
|
1702
|
+
state.mode = TABLE;
|
1703
|
+
break;
|
1704
|
+
case 3:
|
1705
|
+
strm.msg = 'invalid block type';
|
1706
|
+
state.mode = BAD;
|
1707
|
+
}
|
1708
|
+
//--- DROPBITS(2) ---//
|
1709
|
+
hold >>>= 2;
|
1710
|
+
bits -= 2;
|
1711
|
+
//---//
|
1712
|
+
break;
|
1713
|
+
case STORED:
|
1714
|
+
//--- BYTEBITS() ---// /* go to byte boundary */
|
1715
|
+
hold >>>= bits & 7;
|
1716
|
+
bits -= bits & 7;
|
1717
|
+
//---//
|
1718
|
+
//=== NEEDBITS(32); */
|
1719
|
+
while (bits < 32) {
|
1720
|
+
if (have === 0) { break inf_leave; }
|
1721
|
+
have--;
|
1722
|
+
hold += input[next++] << bits;
|
1723
|
+
bits += 8;
|
1724
|
+
}
|
1725
|
+
//===//
|
1726
|
+
if ((hold & 0xffff) !== ((hold >>> 16) ^ 0xffff)) {
|
1727
|
+
strm.msg = 'invalid stored block lengths';
|
1728
|
+
state.mode = BAD;
|
1729
|
+
break;
|
1730
|
+
}
|
1731
|
+
state.length = hold & 0xffff;
|
1732
|
+
//Tracev((stderr, "inflate: stored length %u\n",
|
1733
|
+
// state.length));
|
1734
|
+
//=== INITBITS();
|
1735
|
+
hold = 0;
|
1736
|
+
bits = 0;
|
1737
|
+
//===//
|
1738
|
+
state.mode = COPY_;
|
1739
|
+
if (flush === Z_TREES) { break inf_leave; }
|
1740
|
+
/* falls through */
|
1741
|
+
case COPY_:
|
1742
|
+
state.mode = COPY;
|
1743
|
+
/* falls through */
|
1744
|
+
case COPY:
|
1745
|
+
copy = state.length;
|
1746
|
+
if (copy) {
|
1747
|
+
if (copy > have) { copy = have; }
|
1748
|
+
if (copy > left) { copy = left; }
|
1749
|
+
if (copy === 0) { break inf_leave; }
|
1750
|
+
//--- zmemcpy(put, next, copy); ---
|
1751
|
+
utils.arraySet(output, input, next, copy, put);
|
1752
|
+
//---//
|
1753
|
+
have -= copy;
|
1754
|
+
next += copy;
|
1755
|
+
left -= copy;
|
1756
|
+
put += copy;
|
1757
|
+
state.length -= copy;
|
1758
|
+
break;
|
1759
|
+
}
|
1760
|
+
//Tracev((stderr, "inflate: stored end\n"));
|
1761
|
+
state.mode = TYPE;
|
1762
|
+
break;
|
1763
|
+
case TABLE:
|
1764
|
+
//=== NEEDBITS(14); */
|
1765
|
+
while (bits < 14) {
|
1766
|
+
if (have === 0) { break inf_leave; }
|
1767
|
+
have--;
|
1768
|
+
hold += input[next++] << bits;
|
1769
|
+
bits += 8;
|
1770
|
+
}
|
1771
|
+
//===//
|
1772
|
+
state.nlen = (hold & 0x1f)/*BITS(5)*/ + 257;
|
1773
|
+
//--- DROPBITS(5) ---//
|
1774
|
+
hold >>>= 5;
|
1775
|
+
bits -= 5;
|
1776
|
+
//---//
|
1777
|
+
state.ndist = (hold & 0x1f)/*BITS(5)*/ + 1;
|
1778
|
+
//--- DROPBITS(5) ---//
|
1779
|
+
hold >>>= 5;
|
1780
|
+
bits -= 5;
|
1781
|
+
//---//
|
1782
|
+
state.ncode = (hold & 0x0f)/*BITS(4)*/ + 4;
|
1783
|
+
//--- DROPBITS(4) ---//
|
1784
|
+
hold >>>= 4;
|
1785
|
+
bits -= 4;
|
1786
|
+
//---//
|
1787
|
+
//#ifndef PKZIP_BUG_WORKAROUND
|
1788
|
+
if (state.nlen > 286 || state.ndist > 30) {
|
1789
|
+
strm.msg = 'too many length or distance symbols';
|
1790
|
+
state.mode = BAD;
|
1791
|
+
break;
|
1792
|
+
}
|
1793
|
+
//#endif
|
1794
|
+
//Tracev((stderr, "inflate: table sizes ok\n"));
|
1795
|
+
state.have = 0;
|
1796
|
+
state.mode = LENLENS;
|
1797
|
+
/* falls through */
|
1798
|
+
case LENLENS:
|
1799
|
+
while (state.have < state.ncode) {
|
1800
|
+
//=== NEEDBITS(3);
|
1801
|
+
while (bits < 3) {
|
1802
|
+
if (have === 0) { break inf_leave; }
|
1803
|
+
have--;
|
1804
|
+
hold += input[next++] << bits;
|
1805
|
+
bits += 8;
|
1806
|
+
}
|
1807
|
+
//===//
|
1808
|
+
state.lens[order[state.have++]] = (hold & 0x07);//BITS(3);
|
1809
|
+
//--- DROPBITS(3) ---//
|
1810
|
+
hold >>>= 3;
|
1811
|
+
bits -= 3;
|
1812
|
+
//---//
|
1813
|
+
}
|
1814
|
+
while (state.have < 19) {
|
1815
|
+
state.lens[order[state.have++]] = 0;
|
1816
|
+
}
|
1817
|
+
// We have separate tables & no pointers. 2 commented lines below not needed.
|
1818
|
+
//state.next = state.codes;
|
1819
|
+
//state.lencode = state.next;
|
1820
|
+
// Switch to use dynamic table
|
1821
|
+
state.lencode = state.lendyn;
|
1822
|
+
state.lenbits = 7;
|
1823
|
+
|
1824
|
+
opts = { bits: state.lenbits };
|
1825
|
+
ret = inflate_table(CODES, state.lens, 0, 19, state.lencode, 0, state.work, opts);
|
1826
|
+
state.lenbits = opts.bits;
|
1827
|
+
|
1828
|
+
if (ret) {
|
1829
|
+
strm.msg = 'invalid code lengths set';
|
1830
|
+
state.mode = BAD;
|
1831
|
+
break;
|
1832
|
+
}
|
1833
|
+
//Tracev((stderr, "inflate: code lengths ok\n"));
|
1834
|
+
state.have = 0;
|
1835
|
+
state.mode = CODELENS;
|
1836
|
+
/* falls through */
|
1837
|
+
case CODELENS:
|
1838
|
+
while (state.have < state.nlen + state.ndist) {
|
1839
|
+
for (;;) {
|
1840
|
+
here = state.lencode[hold & ((1 << state.lenbits) - 1)];/*BITS(state.lenbits)*/
|
1841
|
+
here_bits = here >>> 24;
|
1842
|
+
here_op = (here >>> 16) & 0xff;
|
1843
|
+
here_val = here & 0xffff;
|
1844
|
+
|
1845
|
+
if ((here_bits) <= bits) { break; }
|
1846
|
+
//--- PULLBYTE() ---//
|
1847
|
+
if (have === 0) { break inf_leave; }
|
1848
|
+
have--;
|
1849
|
+
hold += input[next++] << bits;
|
1850
|
+
bits += 8;
|
1851
|
+
//---//
|
1852
|
+
}
|
1853
|
+
if (here_val < 16) {
|
1854
|
+
//--- DROPBITS(here.bits) ---//
|
1855
|
+
hold >>>= here_bits;
|
1856
|
+
bits -= here_bits;
|
1857
|
+
//---//
|
1858
|
+
state.lens[state.have++] = here_val;
|
1859
|
+
}
|
1860
|
+
else {
|
1861
|
+
if (here_val === 16) {
|
1862
|
+
//=== NEEDBITS(here.bits + 2);
|
1863
|
+
n = here_bits + 2;
|
1864
|
+
while (bits < n) {
|
1865
|
+
if (have === 0) { break inf_leave; }
|
1866
|
+
have--;
|
1867
|
+
hold += input[next++] << bits;
|
1868
|
+
bits += 8;
|
1869
|
+
}
|
1870
|
+
//===//
|
1871
|
+
//--- DROPBITS(here.bits) ---//
|
1872
|
+
hold >>>= here_bits;
|
1873
|
+
bits -= here_bits;
|
1874
|
+
//---//
|
1875
|
+
if (state.have === 0) {
|
1876
|
+
strm.msg = 'invalid bit length repeat';
|
1877
|
+
state.mode = BAD;
|
1878
|
+
break;
|
1879
|
+
}
|
1880
|
+
len = state.lens[state.have - 1];
|
1881
|
+
copy = 3 + (hold & 0x03);//BITS(2);
|
1882
|
+
//--- DROPBITS(2) ---//
|
1883
|
+
hold >>>= 2;
|
1884
|
+
bits -= 2;
|
1885
|
+
//---//
|
1886
|
+
}
|
1887
|
+
else if (here_val === 17) {
|
1888
|
+
//=== NEEDBITS(here.bits + 3);
|
1889
|
+
n = here_bits + 3;
|
1890
|
+
while (bits < n) {
|
1891
|
+
if (have === 0) { break inf_leave; }
|
1892
|
+
have--;
|
1893
|
+
hold += input[next++] << bits;
|
1894
|
+
bits += 8;
|
1895
|
+
}
|
1896
|
+
//===//
|
1897
|
+
//--- DROPBITS(here.bits) ---//
|
1898
|
+
hold >>>= here_bits;
|
1899
|
+
bits -= here_bits;
|
1900
|
+
//---//
|
1901
|
+
len = 0;
|
1902
|
+
copy = 3 + (hold & 0x07);//BITS(3);
|
1903
|
+
//--- DROPBITS(3) ---//
|
1904
|
+
hold >>>= 3;
|
1905
|
+
bits -= 3;
|
1906
|
+
//---//
|
1907
|
+
}
|
1908
|
+
else {
|
1909
|
+
//=== NEEDBITS(here.bits + 7);
|
1910
|
+
n = here_bits + 7;
|
1911
|
+
while (bits < n) {
|
1912
|
+
if (have === 0) { break inf_leave; }
|
1913
|
+
have--;
|
1914
|
+
hold += input[next++] << bits;
|
1915
|
+
bits += 8;
|
1916
|
+
}
|
1917
|
+
//===//
|
1918
|
+
//--- DROPBITS(here.bits) ---//
|
1919
|
+
hold >>>= here_bits;
|
1920
|
+
bits -= here_bits;
|
1921
|
+
//---//
|
1922
|
+
len = 0;
|
1923
|
+
copy = 11 + (hold & 0x7f);//BITS(7);
|
1924
|
+
//--- DROPBITS(7) ---//
|
1925
|
+
hold >>>= 7;
|
1926
|
+
bits -= 7;
|
1927
|
+
//---//
|
1928
|
+
}
|
1929
|
+
if (state.have + copy > state.nlen + state.ndist) {
|
1930
|
+
strm.msg = 'invalid bit length repeat';
|
1931
|
+
state.mode = BAD;
|
1932
|
+
break;
|
1933
|
+
}
|
1934
|
+
while (copy--) {
|
1935
|
+
state.lens[state.have++] = len;
|
1936
|
+
}
|
1937
|
+
}
|
1938
|
+
}
|
1939
|
+
|
1940
|
+
/* handle error breaks in while */
|
1941
|
+
if (state.mode === BAD) { break; }
|
1942
|
+
|
1943
|
+
/* check for end-of-block code (better have one) */
|
1944
|
+
if (state.lens[256] === 0) {
|
1945
|
+
strm.msg = 'invalid code -- missing end-of-block';
|
1946
|
+
state.mode = BAD;
|
1947
|
+
break;
|
1948
|
+
}
|
1949
|
+
|
1950
|
+
/* build code tables -- note: do not change the lenbits or distbits
|
1951
|
+
values here (9 and 6) without reading the comments in inftrees.h
|
1952
|
+
concerning the ENOUGH constants, which depend on those values */
|
1953
|
+
state.lenbits = 9;
|
1954
|
+
|
1955
|
+
opts = { bits: state.lenbits };
|
1956
|
+
ret = inflate_table(LENS, state.lens, 0, state.nlen, state.lencode, 0, state.work, opts);
|
1957
|
+
// We have separate tables & no pointers. 2 commented lines below not needed.
|
1958
|
+
// state.next_index = opts.table_index;
|
1959
|
+
state.lenbits = opts.bits;
|
1960
|
+
// state.lencode = state.next;
|
1961
|
+
|
1962
|
+
if (ret) {
|
1963
|
+
strm.msg = 'invalid literal/lengths set';
|
1964
|
+
state.mode = BAD;
|
1965
|
+
break;
|
1966
|
+
}
|
1967
|
+
|
1968
|
+
state.distbits = 6;
|
1969
|
+
//state.distcode.copy(state.codes);
|
1970
|
+
// Switch to use dynamic table
|
1971
|
+
state.distcode = state.distdyn;
|
1972
|
+
opts = { bits: state.distbits };
|
1973
|
+
ret = inflate_table(DISTS, state.lens, state.nlen, state.ndist, state.distcode, 0, state.work, opts);
|
1974
|
+
// We have separate tables & no pointers. 2 commented lines below not needed.
|
1975
|
+
// state.next_index = opts.table_index;
|
1976
|
+
state.distbits = opts.bits;
|
1977
|
+
// state.distcode = state.next;
|
1978
|
+
|
1979
|
+
if (ret) {
|
1980
|
+
strm.msg = 'invalid distances set';
|
1981
|
+
state.mode = BAD;
|
1982
|
+
break;
|
1983
|
+
}
|
1984
|
+
//Tracev((stderr, 'inflate: codes ok\n'));
|
1985
|
+
state.mode = LEN_;
|
1986
|
+
if (flush === Z_TREES) { break inf_leave; }
|
1987
|
+
/* falls through */
|
1988
|
+
case LEN_:
|
1989
|
+
state.mode = LEN;
|
1990
|
+
/* falls through */
|
1991
|
+
case LEN:
|
1992
|
+
if (have >= 6 && left >= 258) {
|
1993
|
+
//--- RESTORE() ---
|
1994
|
+
strm.next_out = put;
|
1995
|
+
strm.avail_out = left;
|
1996
|
+
strm.next_in = next;
|
1997
|
+
strm.avail_in = have;
|
1998
|
+
state.hold = hold;
|
1999
|
+
state.bits = bits;
|
2000
|
+
//---
|
2001
|
+
inflate_fast(strm, _out);
|
2002
|
+
//--- LOAD() ---
|
2003
|
+
put = strm.next_out;
|
2004
|
+
output = strm.output;
|
2005
|
+
left = strm.avail_out;
|
2006
|
+
next = strm.next_in;
|
2007
|
+
input = strm.input;
|
2008
|
+
have = strm.avail_in;
|
2009
|
+
hold = state.hold;
|
2010
|
+
bits = state.bits;
|
2011
|
+
//---
|
2012
|
+
|
2013
|
+
if (state.mode === TYPE) {
|
2014
|
+
state.back = -1;
|
2015
|
+
}
|
2016
|
+
break;
|
2017
|
+
}
|
2018
|
+
state.back = 0;
|
2019
|
+
for (;;) {
|
2020
|
+
here = state.lencode[hold & ((1 << state.lenbits) - 1)]; /*BITS(state.lenbits)*/
|
2021
|
+
here_bits = here >>> 24;
|
2022
|
+
here_op = (here >>> 16) & 0xff;
|
2023
|
+
here_val = here & 0xffff;
|
2024
|
+
|
2025
|
+
if (here_bits <= bits) { break; }
|
2026
|
+
//--- PULLBYTE() ---//
|
2027
|
+
if (have === 0) { break inf_leave; }
|
2028
|
+
have--;
|
2029
|
+
hold += input[next++] << bits;
|
2030
|
+
bits += 8;
|
2031
|
+
//---//
|
2032
|
+
}
|
2033
|
+
if (here_op && (here_op & 0xf0) === 0) {
|
2034
|
+
last_bits = here_bits;
|
2035
|
+
last_op = here_op;
|
2036
|
+
last_val = here_val;
|
2037
|
+
for (;;) {
|
2038
|
+
here = state.lencode[last_val +
|
2039
|
+
((hold & ((1 << (last_bits + last_op)) - 1))/*BITS(last.bits + last.op)*/ >> last_bits)];
|
2040
|
+
here_bits = here >>> 24;
|
2041
|
+
here_op = (here >>> 16) & 0xff;
|
2042
|
+
here_val = here & 0xffff;
|
2043
|
+
|
2044
|
+
if ((last_bits + here_bits) <= bits) { break; }
|
2045
|
+
//--- PULLBYTE() ---//
|
2046
|
+
if (have === 0) { break inf_leave; }
|
2047
|
+
have--;
|
2048
|
+
hold += input[next++] << bits;
|
2049
|
+
bits += 8;
|
2050
|
+
//---//
|
2051
|
+
}
|
2052
|
+
//--- DROPBITS(last.bits) ---//
|
2053
|
+
hold >>>= last_bits;
|
2054
|
+
bits -= last_bits;
|
2055
|
+
//---//
|
2056
|
+
state.back += last_bits;
|
2057
|
+
}
|
2058
|
+
//--- DROPBITS(here.bits) ---//
|
2059
|
+
hold >>>= here_bits;
|
2060
|
+
bits -= here_bits;
|
2061
|
+
//---//
|
2062
|
+
state.back += here_bits;
|
2063
|
+
state.length = here_val;
|
2064
|
+
if (here_op === 0) {
|
2065
|
+
//Tracevv((stderr, here.val >= 0x20 && here.val < 0x7f ?
|
2066
|
+
// "inflate: literal '%c'\n" :
|
2067
|
+
// "inflate: literal 0x%02x\n", here.val));
|
2068
|
+
state.mode = LIT;
|
2069
|
+
break;
|
2070
|
+
}
|
2071
|
+
if (here_op & 32) {
|
2072
|
+
//Tracevv((stderr, "inflate: end of block\n"));
|
2073
|
+
state.back = -1;
|
2074
|
+
state.mode = TYPE;
|
2075
|
+
break;
|
2076
|
+
}
|
2077
|
+
if (here_op & 64) {
|
2078
|
+
strm.msg = 'invalid literal/length code';
|
2079
|
+
state.mode = BAD;
|
2080
|
+
break;
|
2081
|
+
}
|
2082
|
+
state.extra = here_op & 15;
|
2083
|
+
state.mode = LENEXT;
|
2084
|
+
/* falls through */
|
2085
|
+
case LENEXT:
|
2086
|
+
if (state.extra) {
|
2087
|
+
//=== NEEDBITS(state.extra);
|
2088
|
+
n = state.extra;
|
2089
|
+
while (bits < n) {
|
2090
|
+
if (have === 0) { break inf_leave; }
|
2091
|
+
have--;
|
2092
|
+
hold += input[next++] << bits;
|
2093
|
+
bits += 8;
|
2094
|
+
}
|
2095
|
+
//===//
|
2096
|
+
state.length += hold & ((1 << state.extra) - 1)/*BITS(state.extra)*/;
|
2097
|
+
//--- DROPBITS(state.extra) ---//
|
2098
|
+
hold >>>= state.extra;
|
2099
|
+
bits -= state.extra;
|
2100
|
+
//---//
|
2101
|
+
state.back += state.extra;
|
2102
|
+
}
|
2103
|
+
//Tracevv((stderr, "inflate: length %u\n", state.length));
|
2104
|
+
state.was = state.length;
|
2105
|
+
state.mode = DIST;
|
2106
|
+
/* falls through */
|
2107
|
+
case DIST:
|
2108
|
+
for (;;) {
|
2109
|
+
here = state.distcode[hold & ((1 << state.distbits) - 1)];/*BITS(state.distbits)*/
|
2110
|
+
here_bits = here >>> 24;
|
2111
|
+
here_op = (here >>> 16) & 0xff;
|
2112
|
+
here_val = here & 0xffff;
|
2113
|
+
|
2114
|
+
if ((here_bits) <= bits) { break; }
|
2115
|
+
//--- PULLBYTE() ---//
|
2116
|
+
if (have === 0) { break inf_leave; }
|
2117
|
+
have--;
|
2118
|
+
hold += input[next++] << bits;
|
2119
|
+
bits += 8;
|
2120
|
+
//---//
|
2121
|
+
}
|
2122
|
+
if ((here_op & 0xf0) === 0) {
|
2123
|
+
last_bits = here_bits;
|
2124
|
+
last_op = here_op;
|
2125
|
+
last_val = here_val;
|
2126
|
+
for (;;) {
|
2127
|
+
here = state.distcode[last_val +
|
2128
|
+
((hold & ((1 << (last_bits + last_op)) - 1))/*BITS(last.bits + last.op)*/ >> last_bits)];
|
2129
|
+
here_bits = here >>> 24;
|
2130
|
+
here_op = (here >>> 16) & 0xff;
|
2131
|
+
here_val = here & 0xffff;
|
2132
|
+
|
2133
|
+
if ((last_bits + here_bits) <= bits) { break; }
|
2134
|
+
//--- PULLBYTE() ---//
|
2135
|
+
if (have === 0) { break inf_leave; }
|
2136
|
+
have--;
|
2137
|
+
hold += input[next++] << bits;
|
2138
|
+
bits += 8;
|
2139
|
+
//---//
|
2140
|
+
}
|
2141
|
+
//--- DROPBITS(last.bits) ---//
|
2142
|
+
hold >>>= last_bits;
|
2143
|
+
bits -= last_bits;
|
2144
|
+
//---//
|
2145
|
+
state.back += last_bits;
|
2146
|
+
}
|
2147
|
+
//--- DROPBITS(here.bits) ---//
|
2148
|
+
hold >>>= here_bits;
|
2149
|
+
bits -= here_bits;
|
2150
|
+
//---//
|
2151
|
+
state.back += here_bits;
|
2152
|
+
if (here_op & 64) {
|
2153
|
+
strm.msg = 'invalid distance code';
|
2154
|
+
state.mode = BAD;
|
2155
|
+
break;
|
2156
|
+
}
|
2157
|
+
state.offset = here_val;
|
2158
|
+
state.extra = (here_op) & 15;
|
2159
|
+
state.mode = DISTEXT;
|
2160
|
+
/* falls through */
|
2161
|
+
case DISTEXT:
|
2162
|
+
if (state.extra) {
|
2163
|
+
//=== NEEDBITS(state.extra);
|
2164
|
+
n = state.extra;
|
2165
|
+
while (bits < n) {
|
2166
|
+
if (have === 0) { break inf_leave; }
|
2167
|
+
have--;
|
2168
|
+
hold += input[next++] << bits;
|
2169
|
+
bits += 8;
|
2170
|
+
}
|
2171
|
+
//===//
|
2172
|
+
state.offset += hold & ((1 << state.extra) - 1)/*BITS(state.extra)*/;
|
2173
|
+
//--- DROPBITS(state.extra) ---//
|
2174
|
+
hold >>>= state.extra;
|
2175
|
+
bits -= state.extra;
|
2176
|
+
//---//
|
2177
|
+
state.back += state.extra;
|
2178
|
+
}
|
2179
|
+
//#ifdef INFLATE_STRICT
|
2180
|
+
if (state.offset > state.dmax) {
|
2181
|
+
strm.msg = 'invalid distance too far back';
|
2182
|
+
state.mode = BAD;
|
2183
|
+
break;
|
2184
|
+
}
|
2185
|
+
//#endif
|
2186
|
+
//Tracevv((stderr, "inflate: distance %u\n", state.offset));
|
2187
|
+
state.mode = MATCH;
|
2188
|
+
/* falls through */
|
2189
|
+
case MATCH:
|
2190
|
+
if (left === 0) { break inf_leave; }
|
2191
|
+
copy = _out - left;
|
2192
|
+
if (state.offset > copy) { /* copy from window */
|
2193
|
+
copy = state.offset - copy;
|
2194
|
+
if (copy > state.whave) {
|
2195
|
+
if (state.sane) {
|
2196
|
+
strm.msg = 'invalid distance too far back';
|
2197
|
+
state.mode = BAD;
|
2198
|
+
break;
|
2199
|
+
}
|
2200
|
+
// (!) This block is disabled in zlib defaults,
|
2201
|
+
// don't enable it for binary compatibility
|
2202
|
+
//#ifdef INFLATE_ALLOW_INVALID_DISTANCE_TOOFAR_ARRR
|
2203
|
+
// Trace((stderr, "inflate.c too far\n"));
|
2204
|
+
// copy -= state.whave;
|
2205
|
+
// if (copy > state.length) { copy = state.length; }
|
2206
|
+
// if (copy > left) { copy = left; }
|
2207
|
+
// left -= copy;
|
2208
|
+
// state.length -= copy;
|
2209
|
+
// do {
|
2210
|
+
// output[put++] = 0;
|
2211
|
+
// } while (--copy);
|
2212
|
+
// if (state.length === 0) { state.mode = LEN; }
|
2213
|
+
// break;
|
2214
|
+
//#endif
|
2215
|
+
}
|
2216
|
+
if (copy > state.wnext) {
|
2217
|
+
copy -= state.wnext;
|
2218
|
+
from = state.wsize - copy;
|
2219
|
+
}
|
2220
|
+
else {
|
2221
|
+
from = state.wnext - copy;
|
2222
|
+
}
|
2223
|
+
if (copy > state.length) { copy = state.length; }
|
2224
|
+
from_source = state.window;
|
2225
|
+
}
|
2226
|
+
else { /* copy from output */
|
2227
|
+
from_source = output;
|
2228
|
+
from = put - state.offset;
|
2229
|
+
copy = state.length;
|
2230
|
+
}
|
2231
|
+
if (copy > left) { copy = left; }
|
2232
|
+
left -= copy;
|
2233
|
+
state.length -= copy;
|
2234
|
+
do {
|
2235
|
+
output[put++] = from_source[from++];
|
2236
|
+
} while (--copy);
|
2237
|
+
if (state.length === 0) { state.mode = LEN; }
|
2238
|
+
break;
|
2239
|
+
case LIT:
|
2240
|
+
if (left === 0) { break inf_leave; }
|
2241
|
+
output[put++] = state.length;
|
2242
|
+
left--;
|
2243
|
+
state.mode = LEN;
|
2244
|
+
break;
|
2245
|
+
case CHECK:
|
2246
|
+
if (state.wrap) {
|
2247
|
+
//=== NEEDBITS(32);
|
2248
|
+
while (bits < 32) {
|
2249
|
+
if (have === 0) { break inf_leave; }
|
2250
|
+
have--;
|
2251
|
+
// Use '|' instead of '+' to make sure that result is signed
|
2252
|
+
hold |= input[next++] << bits;
|
2253
|
+
bits += 8;
|
2254
|
+
}
|
2255
|
+
//===//
|
2256
|
+
_out -= left;
|
2257
|
+
strm.total_out += _out;
|
2258
|
+
state.total += _out;
|
2259
|
+
if (_out) {
|
2260
|
+
strm.adler = state.check =
|
2261
|
+
/*UPDATE(state.check, put - _out, _out);*/
|
2262
|
+
(state.flags ? crc32(state.check, output, _out, put - _out) : adler32(state.check, output, _out, put - _out));
|
2263
|
+
|
2264
|
+
}
|
2265
|
+
_out = left;
|
2266
|
+
// NB: crc32 stored as signed 32-bit int, zswap32 returns signed too
|
2267
|
+
if ((state.flags ? hold : zswap32(hold)) !== state.check) {
|
2268
|
+
strm.msg = 'incorrect data check';
|
2269
|
+
state.mode = BAD;
|
2270
|
+
break;
|
2271
|
+
}
|
2272
|
+
//=== INITBITS();
|
2273
|
+
hold = 0;
|
2274
|
+
bits = 0;
|
2275
|
+
//===//
|
2276
|
+
//Tracev((stderr, "inflate: check matches trailer\n"));
|
2277
|
+
}
|
2278
|
+
state.mode = LENGTH;
|
2279
|
+
/* falls through */
|
2280
|
+
case LENGTH:
|
2281
|
+
if (state.wrap && state.flags) {
|
2282
|
+
//=== NEEDBITS(32);
|
2283
|
+
while (bits < 32) {
|
2284
|
+
if (have === 0) { break inf_leave; }
|
2285
|
+
have--;
|
2286
|
+
hold += input[next++] << bits;
|
2287
|
+
bits += 8;
|
2288
|
+
}
|
2289
|
+
//===//
|
2290
|
+
if (hold !== (state.total & 0xffffffff)) {
|
2291
|
+
strm.msg = 'incorrect length check';
|
2292
|
+
state.mode = BAD;
|
2293
|
+
break;
|
2294
|
+
}
|
2295
|
+
//=== INITBITS();
|
2296
|
+
hold = 0;
|
2297
|
+
bits = 0;
|
2298
|
+
//===//
|
2299
|
+
//Tracev((stderr, "inflate: length matches trailer\n"));
|
2300
|
+
}
|
2301
|
+
state.mode = DONE;
|
2302
|
+
/* falls through */
|
2303
|
+
case DONE:
|
2304
|
+
ret = Z_STREAM_END;
|
2305
|
+
break inf_leave;
|
2306
|
+
case BAD:
|
2307
|
+
ret = Z_DATA_ERROR;
|
2308
|
+
break inf_leave;
|
2309
|
+
case MEM:
|
2310
|
+
return Z_MEM_ERROR;
|
2311
|
+
case SYNC:
|
2312
|
+
/* falls through */
|
2313
|
+
default:
|
2314
|
+
return Z_STREAM_ERROR;
|
2315
|
+
}
|
2316
|
+
}
|
2317
|
+
|
2318
|
+
// inf_leave <- here is real place for "goto inf_leave", emulated via "break inf_leave"
|
2319
|
+
|
2320
|
+
/*
|
2321
|
+
Return from inflate(), updating the total counts and the check value.
|
2322
|
+
If there was no progress during the inflate() call, return a buffer
|
2323
|
+
error. Call updatewindow() to create and/or update the window state.
|
2324
|
+
Note: a memory error from inflate() is non-recoverable.
|
2325
|
+
*/
|
2326
|
+
|
2327
|
+
//--- RESTORE() ---
|
2328
|
+
strm.next_out = put;
|
2329
|
+
strm.avail_out = left;
|
2330
|
+
strm.next_in = next;
|
2331
|
+
strm.avail_in = have;
|
2332
|
+
state.hold = hold;
|
2333
|
+
state.bits = bits;
|
2334
|
+
//---
|
2335
|
+
|
2336
|
+
if (state.wsize || (_out !== strm.avail_out && state.mode < BAD &&
|
2337
|
+
(state.mode < CHECK || flush !== Z_FINISH))) {
|
2338
|
+
if (updatewindow(strm, strm.output, strm.next_out, _out - strm.avail_out)) {
|
2339
|
+
state.mode = MEM;
|
2340
|
+
return Z_MEM_ERROR;
|
2341
|
+
}
|
2342
|
+
}
|
2343
|
+
_in -= strm.avail_in;
|
2344
|
+
_out -= strm.avail_out;
|
2345
|
+
strm.total_in += _in;
|
2346
|
+
strm.total_out += _out;
|
2347
|
+
state.total += _out;
|
2348
|
+
if (state.wrap && _out) {
|
2349
|
+
strm.adler = state.check = /*UPDATE(state.check, strm.next_out - _out, _out);*/
|
2350
|
+
(state.flags ? crc32(state.check, output, _out, strm.next_out - _out) : adler32(state.check, output, _out, strm.next_out - _out));
|
2351
|
+
}
|
2352
|
+
strm.data_type = state.bits + (state.last ? 64 : 0) +
|
2353
|
+
(state.mode === TYPE ? 128 : 0) +
|
2354
|
+
(state.mode === LEN_ || state.mode === COPY_ ? 256 : 0);
|
2355
|
+
if (((_in === 0 && _out === 0) || flush === Z_FINISH) && ret === Z_OK) {
|
2356
|
+
ret = Z_BUF_ERROR;
|
2357
|
+
}
|
2358
|
+
return ret;
|
2359
|
+
}
|
2360
|
+
|
2361
|
+
function inflateEnd(strm) {
|
2362
|
+
|
2363
|
+
if (!strm || !strm.state /*|| strm->zfree == (free_func)0*/) {
|
2364
|
+
return Z_STREAM_ERROR;
|
2365
|
+
}
|
2366
|
+
|
2367
|
+
var state = strm.state;
|
2368
|
+
if (state.window) {
|
2369
|
+
state.window = null;
|
2370
|
+
}
|
2371
|
+
strm.state = null;
|
2372
|
+
return Z_OK;
|
2373
|
+
}
|
2374
|
+
|
2375
|
+
function inflateGetHeader(strm, head) {
|
2376
|
+
var state;
|
2377
|
+
|
2378
|
+
/* check state */
|
2379
|
+
if (!strm || !strm.state) { return Z_STREAM_ERROR; }
|
2380
|
+
state = strm.state;
|
2381
|
+
if ((state.wrap & 2) === 0) { return Z_STREAM_ERROR; }
|
2382
|
+
|
2383
|
+
/* save header structure */
|
2384
|
+
state.head = head;
|
2385
|
+
head.done = false;
|
2386
|
+
return Z_OK;
|
2387
|
+
}
|
2388
|
+
|
2389
|
+
function inflateSetDictionary(strm, dictionary) {
|
2390
|
+
var dictLength = dictionary.length;
|
2391
|
+
|
2392
|
+
var state;
|
2393
|
+
var dictid;
|
2394
|
+
var ret;
|
2395
|
+
|
2396
|
+
/* check state */
|
2397
|
+
if (!strm /* == Z_NULL */ || !strm.state /* == Z_NULL */) { return Z_STREAM_ERROR; }
|
2398
|
+
state = strm.state;
|
2399
|
+
|
2400
|
+
if (state.wrap !== 0 && state.mode !== DICT) {
|
2401
|
+
return Z_STREAM_ERROR;
|
2402
|
+
}
|
2403
|
+
|
2404
|
+
/* check for correct dictionary identifier */
|
2405
|
+
if (state.mode === DICT) {
|
2406
|
+
dictid = 1; /* adler32(0, null, 0)*/
|
2407
|
+
/* dictid = adler32(dictid, dictionary, dictLength); */
|
2408
|
+
dictid = adler32(dictid, dictionary, dictLength, 0);
|
2409
|
+
if (dictid !== state.check) {
|
2410
|
+
return Z_DATA_ERROR;
|
2411
|
+
}
|
2412
|
+
}
|
2413
|
+
/* copy dictionary to window using updatewindow(), which will amend the
|
2414
|
+
existing dictionary if appropriate */
|
2415
|
+
ret = updatewindow(strm, dictionary, dictLength, dictLength);
|
2416
|
+
if (ret) {
|
2417
|
+
state.mode = MEM;
|
2418
|
+
return Z_MEM_ERROR;
|
2419
|
+
}
|
2420
|
+
state.havedict = 1;
|
2421
|
+
// Tracev((stderr, "inflate: dictionary set\n"));
|
2422
|
+
return Z_OK;
|
2423
|
+
}
|
2424
|
+
|
2425
|
+
exports.inflateReset = inflateReset;
|
2426
|
+
exports.inflateReset2 = inflateReset2;
|
2427
|
+
exports.inflateResetKeep = inflateResetKeep;
|
2428
|
+
exports.inflateInit = inflateInit;
|
2429
|
+
exports.inflateInit2 = inflateInit2;
|
2430
|
+
exports.inflate = inflate;
|
2431
|
+
exports.inflateEnd = inflateEnd;
|
2432
|
+
exports.inflateGetHeader = inflateGetHeader;
|
2433
|
+
exports.inflateSetDictionary = inflateSetDictionary;
|
2434
|
+
exports.inflateInfo = 'pako inflate (from Nodeca project)';
|
2435
|
+
|
2436
|
+
/* Not implemented
|
2437
|
+
exports.inflateCopy = inflateCopy;
|
2438
|
+
exports.inflateGetDictionary = inflateGetDictionary;
|
2439
|
+
exports.inflateMark = inflateMark;
|
2440
|
+
exports.inflatePrime = inflatePrime;
|
2441
|
+
exports.inflateSync = inflateSync;
|
2442
|
+
exports.inflateSyncPoint = inflateSyncPoint;
|
2443
|
+
exports.inflateUndermine = inflateUndermine;
|
2444
|
+
*/
|
2445
|
+
|
2446
|
+
},{"../utils/common":1,"./adler32":3,"./crc32":5,"./inffast":7,"./inftrees":9}],9:[function(require,module,exports){
|
2447
|
+
'use strict';
|
2448
|
+
|
2449
|
+
// (C) 1995-2013 Jean-loup Gailly and Mark Adler
|
2450
|
+
// (C) 2014-2017 Vitaly Puzrin and Andrey Tupitsin
|
2451
|
+
//
|
2452
|
+
// This software is provided 'as-is', without any express or implied
|
2453
|
+
// warranty. In no event will the authors be held liable for any damages
|
2454
|
+
// arising from the use of this software.
|
2455
|
+
//
|
2456
|
+
// Permission is granted to anyone to use this software for any purpose,
|
2457
|
+
// including commercial applications, and to alter it and redistribute it
|
2458
|
+
// freely, subject to the following restrictions:
|
2459
|
+
//
|
2460
|
+
// 1. The origin of this software must not be misrepresented; you must not
|
2461
|
+
// claim that you wrote the original software. If you use this software
|
2462
|
+
// in a product, an acknowledgment in the product documentation would be
|
2463
|
+
// appreciated but is not required.
|
2464
|
+
// 2. Altered source versions must be plainly marked as such, and must not be
|
2465
|
+
// misrepresented as being the original software.
|
2466
|
+
// 3. This notice may not be removed or altered from any source distribution.
|
2467
|
+
|
2468
|
+
var utils = require('../utils/common');
|
2469
|
+
|
2470
|
+
var MAXBITS = 15;
|
2471
|
+
var ENOUGH_LENS = 852;
|
2472
|
+
var ENOUGH_DISTS = 592;
|
2473
|
+
//var ENOUGH = (ENOUGH_LENS+ENOUGH_DISTS);
|
2474
|
+
|
2475
|
+
var CODES = 0;
|
2476
|
+
var LENS = 1;
|
2477
|
+
var DISTS = 2;
|
2478
|
+
|
2479
|
+
var lbase = [ /* Length codes 257..285 base */
|
2480
|
+
3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 23, 27, 31,
|
2481
|
+
35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258, 0, 0
|
2482
|
+
];
|
2483
|
+
|
2484
|
+
var lext = [ /* Length codes 257..285 extra */
|
2485
|
+
16, 16, 16, 16, 16, 16, 16, 16, 17, 17, 17, 17, 18, 18, 18, 18,
|
2486
|
+
19, 19, 19, 19, 20, 20, 20, 20, 21, 21, 21, 21, 16, 72, 78
|
2487
|
+
];
|
2488
|
+
|
2489
|
+
var dbase = [ /* Distance codes 0..29 base */
|
2490
|
+
1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193,
|
2491
|
+
257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145,
|
2492
|
+
8193, 12289, 16385, 24577, 0, 0
|
2493
|
+
];
|
2494
|
+
|
2495
|
+
var dext = [ /* Distance codes 0..29 extra */
|
2496
|
+
16, 16, 16, 16, 17, 17, 18, 18, 19, 19, 20, 20, 21, 21, 22, 22,
|
2497
|
+
23, 23, 24, 24, 25, 25, 26, 26, 27, 27,
|
2498
|
+
28, 28, 29, 29, 64, 64
|
2499
|
+
];
|
2500
|
+
|
2501
|
+
module.exports = function inflate_table(type, lens, lens_index, codes, table, table_index, work, opts)
|
2502
|
+
{
|
2503
|
+
var bits = opts.bits;
|
2504
|
+
//here = opts.here; /* table entry for duplication */
|
2505
|
+
|
2506
|
+
var len = 0; /* a code's length in bits */
|
2507
|
+
var sym = 0; /* index of code symbols */
|
2508
|
+
var min = 0, max = 0; /* minimum and maximum code lengths */
|
2509
|
+
var root = 0; /* number of index bits for root table */
|
2510
|
+
var curr = 0; /* number of index bits for current table */
|
2511
|
+
var drop = 0; /* code bits to drop for sub-table */
|
2512
|
+
var left = 0; /* number of prefix codes available */
|
2513
|
+
var used = 0; /* code entries in table used */
|
2514
|
+
var huff = 0; /* Huffman code */
|
2515
|
+
var incr; /* for incrementing code, index */
|
2516
|
+
var fill; /* index for replicating entries */
|
2517
|
+
var low; /* low bits for current root entry */
|
2518
|
+
var mask; /* mask for low root bits */
|
2519
|
+
var next; /* next available space in table */
|
2520
|
+
var base = null; /* base value table to use */
|
2521
|
+
var base_index = 0;
|
2522
|
+
// var shoextra; /* extra bits table to use */
|
2523
|
+
var end; /* use base and extra for symbol > end */
|
2524
|
+
var count = new utils.Buf16(MAXBITS + 1); //[MAXBITS+1]; /* number of codes of each length */
|
2525
|
+
var offs = new utils.Buf16(MAXBITS + 1); //[MAXBITS+1]; /* offsets in table for each length */
|
2526
|
+
var extra = null;
|
2527
|
+
var extra_index = 0;
|
2528
|
+
|
2529
|
+
var here_bits, here_op, here_val;
|
2530
|
+
|
2531
|
+
/*
|
2532
|
+
Process a set of code lengths to create a canonical Huffman code. The
|
2533
|
+
code lengths are lens[0..codes-1]. Each length corresponds to the
|
2534
|
+
symbols 0..codes-1. The Huffman code is generated by first sorting the
|
2535
|
+
symbols by length from short to long, and retaining the symbol order
|
2536
|
+
for codes with equal lengths. Then the code starts with all zero bits
|
2537
|
+
for the first code of the shortest length, and the codes are integer
|
2538
|
+
increments for the same length, and zeros are appended as the length
|
2539
|
+
increases. For the deflate format, these bits are stored backwards
|
2540
|
+
from their more natural integer increment ordering, and so when the
|
2541
|
+
decoding tables are built in the large loop below, the integer codes
|
2542
|
+
are incremented backwards.
|
2543
|
+
|
2544
|
+
This routine assumes, but does not check, that all of the entries in
|
2545
|
+
lens[] are in the range 0..MAXBITS. The caller must assure this.
|
2546
|
+
1..MAXBITS is interpreted as that code length. zero means that that
|
2547
|
+
symbol does not occur in this code.
|
2548
|
+
|
2549
|
+
The codes are sorted by computing a count of codes for each length,
|
2550
|
+
creating from that a table of starting indices for each length in the
|
2551
|
+
sorted table, and then entering the symbols in order in the sorted
|
2552
|
+
table. The sorted table is work[], with that space being provided by
|
2553
|
+
the caller.
|
2554
|
+
|
2555
|
+
The length counts are used for other purposes as well, i.e. finding
|
2556
|
+
the minimum and maximum length codes, determining if there are any
|
2557
|
+
codes at all, checking for a valid set of lengths, and looking ahead
|
2558
|
+
at length counts to determine sub-table sizes when building the
|
2559
|
+
decoding tables.
|
2560
|
+
*/
|
2561
|
+
|
2562
|
+
/* accumulate lengths for codes (assumes lens[] all in 0..MAXBITS) */
|
2563
|
+
for (len = 0; len <= MAXBITS; len++) {
|
2564
|
+
count[len] = 0;
|
2565
|
+
}
|
2566
|
+
for (sym = 0; sym < codes; sym++) {
|
2567
|
+
count[lens[lens_index + sym]]++;
|
2568
|
+
}
|
2569
|
+
|
2570
|
+
/* bound code lengths, force root to be within code lengths */
|
2571
|
+
root = bits;
|
2572
|
+
for (max = MAXBITS; max >= 1; max--) {
|
2573
|
+
if (count[max] !== 0) { break; }
|
2574
|
+
}
|
2575
|
+
if (root > max) {
|
2576
|
+
root = max;
|
2577
|
+
}
|
2578
|
+
if (max === 0) { /* no symbols to code at all */
|
2579
|
+
//table.op[opts.table_index] = 64; //here.op = (var char)64; /* invalid code marker */
|
2580
|
+
//table.bits[opts.table_index] = 1; //here.bits = (var char)1;
|
2581
|
+
//table.val[opts.table_index++] = 0; //here.val = (var short)0;
|
2582
|
+
table[table_index++] = (1 << 24) | (64 << 16) | 0;
|
2583
|
+
|
2584
|
+
|
2585
|
+
//table.op[opts.table_index] = 64;
|
2586
|
+
//table.bits[opts.table_index] = 1;
|
2587
|
+
//table.val[opts.table_index++] = 0;
|
2588
|
+
table[table_index++] = (1 << 24) | (64 << 16) | 0;
|
2589
|
+
|
2590
|
+
opts.bits = 1;
|
2591
|
+
return 0; /* no symbols, but wait for decoding to report error */
|
2592
|
+
}
|
2593
|
+
for (min = 1; min < max; min++) {
|
2594
|
+
if (count[min] !== 0) { break; }
|
2595
|
+
}
|
2596
|
+
if (root < min) {
|
2597
|
+
root = min;
|
2598
|
+
}
|
2599
|
+
|
2600
|
+
/* check for an over-subscribed or incomplete set of lengths */
|
2601
|
+
left = 1;
|
2602
|
+
for (len = 1; len <= MAXBITS; len++) {
|
2603
|
+
left <<= 1;
|
2604
|
+
left -= count[len];
|
2605
|
+
if (left < 0) {
|
2606
|
+
return -1;
|
2607
|
+
} /* over-subscribed */
|
2608
|
+
}
|
2609
|
+
if (left > 0 && (type === CODES || max !== 1)) {
|
2610
|
+
return -1; /* incomplete set */
|
2611
|
+
}
|
2612
|
+
|
2613
|
+
/* generate offsets into symbol table for each length for sorting */
|
2614
|
+
offs[1] = 0;
|
2615
|
+
for (len = 1; len < MAXBITS; len++) {
|
2616
|
+
offs[len + 1] = offs[len] + count[len];
|
2617
|
+
}
|
2618
|
+
|
2619
|
+
/* sort symbols by length, by symbol order within each length */
|
2620
|
+
for (sym = 0; sym < codes; sym++) {
|
2621
|
+
if (lens[lens_index + sym] !== 0) {
|
2622
|
+
work[offs[lens[lens_index + sym]]++] = sym;
|
2623
|
+
}
|
2624
|
+
}
|
2625
|
+
|
2626
|
+
/*
|
2627
|
+
Create and fill in decoding tables. In this loop, the table being
|
2628
|
+
filled is at next and has curr index bits. The code being used is huff
|
2629
|
+
with length len. That code is converted to an index by dropping drop
|
2630
|
+
bits off of the bottom. For codes where len is less than drop + curr,
|
2631
|
+
those top drop + curr - len bits are incremented through all values to
|
2632
|
+
fill the table with replicated entries.
|
2633
|
+
|
2634
|
+
root is the number of index bits for the root table. When len exceeds
|
2635
|
+
root, sub-tables are created pointed to by the root entry with an index
|
2636
|
+
of the low root bits of huff. This is saved in low to check for when a
|
2637
|
+
new sub-table should be started. drop is zero when the root table is
|
2638
|
+
being filled, and drop is root when sub-tables are being filled.
|
2639
|
+
|
2640
|
+
When a new sub-table is needed, it is necessary to look ahead in the
|
2641
|
+
code lengths to determine what size sub-table is needed. The length
|
2642
|
+
counts are used for this, and so count[] is decremented as codes are
|
2643
|
+
entered in the tables.
|
2644
|
+
|
2645
|
+
used keeps track of how many table entries have been allocated from the
|
2646
|
+
provided *table space. It is checked for LENS and DIST tables against
|
2647
|
+
the constants ENOUGH_LENS and ENOUGH_DISTS to guard against changes in
|
2648
|
+
the initial root table size constants. See the comments in inftrees.h
|
2649
|
+
for more information.
|
2650
|
+
|
2651
|
+
sym increments through all symbols, and the loop terminates when
|
2652
|
+
all codes of length max, i.e. all codes, have been processed. This
|
2653
|
+
routine permits incomplete codes, so another loop after this one fills
|
2654
|
+
in the rest of the decoding tables with invalid code markers.
|
2655
|
+
*/
|
2656
|
+
|
2657
|
+
/* set up for code type */
|
2658
|
+
// poor man optimization - use if-else instead of switch,
|
2659
|
+
// to avoid deopts in old v8
|
2660
|
+
if (type === CODES) {
|
2661
|
+
base = extra = work; /* dummy value--not used */
|
2662
|
+
end = 19;
|
2663
|
+
|
2664
|
+
} else if (type === LENS) {
|
2665
|
+
base = lbase;
|
2666
|
+
base_index -= 257;
|
2667
|
+
extra = lext;
|
2668
|
+
extra_index -= 257;
|
2669
|
+
end = 256;
|
2670
|
+
|
2671
|
+
} else { /* DISTS */
|
2672
|
+
base = dbase;
|
2673
|
+
extra = dext;
|
2674
|
+
end = -1;
|
2675
|
+
}
|
2676
|
+
|
2677
|
+
/* initialize opts for loop */
|
2678
|
+
huff = 0; /* starting code */
|
2679
|
+
sym = 0; /* starting code symbol */
|
2680
|
+
len = min; /* starting code length */
|
2681
|
+
next = table_index; /* current table to fill in */
|
2682
|
+
curr = root; /* current table index bits */
|
2683
|
+
drop = 0; /* current bits to drop from code for index */
|
2684
|
+
low = -1; /* trigger new sub-table when len > root */
|
2685
|
+
used = 1 << root; /* use root table entries */
|
2686
|
+
mask = used - 1; /* mask for comparing low */
|
2687
|
+
|
2688
|
+
/* check available table space */
|
2689
|
+
if ((type === LENS && used > ENOUGH_LENS) ||
|
2690
|
+
(type === DISTS && used > ENOUGH_DISTS)) {
|
2691
|
+
return 1;
|
2692
|
+
}
|
2693
|
+
|
2694
|
+
/* process all codes and make table entries */
|
2695
|
+
for (;;) {
|
2696
|
+
/* create table entry */
|
2697
|
+
here_bits = len - drop;
|
2698
|
+
if (work[sym] < end) {
|
2699
|
+
here_op = 0;
|
2700
|
+
here_val = work[sym];
|
2701
|
+
}
|
2702
|
+
else if (work[sym] > end) {
|
2703
|
+
here_op = extra[extra_index + work[sym]];
|
2704
|
+
here_val = base[base_index + work[sym]];
|
2705
|
+
}
|
2706
|
+
else {
|
2707
|
+
here_op = 32 + 64; /* end of block */
|
2708
|
+
here_val = 0;
|
2709
|
+
}
|
2710
|
+
|
2711
|
+
/* replicate for those indices with low len bits equal to huff */
|
2712
|
+
incr = 1 << (len - drop);
|
2713
|
+
fill = 1 << curr;
|
2714
|
+
min = fill; /* save offset to next table */
|
2715
|
+
do {
|
2716
|
+
fill -= incr;
|
2717
|
+
table[next + (huff >> drop) + fill] = (here_bits << 24) | (here_op << 16) | here_val |0;
|
2718
|
+
} while (fill !== 0);
|
2719
|
+
|
2720
|
+
/* backwards increment the len-bit code huff */
|
2721
|
+
incr = 1 << (len - 1);
|
2722
|
+
while (huff & incr) {
|
2723
|
+
incr >>= 1;
|
2724
|
+
}
|
2725
|
+
if (incr !== 0) {
|
2726
|
+
huff &= incr - 1;
|
2727
|
+
huff += incr;
|
2728
|
+
} else {
|
2729
|
+
huff = 0;
|
2730
|
+
}
|
2731
|
+
|
2732
|
+
/* go to next symbol, update count, len */
|
2733
|
+
sym++;
|
2734
|
+
if (--count[len] === 0) {
|
2735
|
+
if (len === max) { break; }
|
2736
|
+
len = lens[lens_index + work[sym]];
|
2737
|
+
}
|
2738
|
+
|
2739
|
+
/* create new sub-table if needed */
|
2740
|
+
if (len > root && (huff & mask) !== low) {
|
2741
|
+
/* if first time, transition to sub-tables */
|
2742
|
+
if (drop === 0) {
|
2743
|
+
drop = root;
|
2744
|
+
}
|
2745
|
+
|
2746
|
+
/* increment past last table */
|
2747
|
+
next += min; /* here min is 1 << curr */
|
2748
|
+
|
2749
|
+
/* determine length of next table */
|
2750
|
+
curr = len - drop;
|
2751
|
+
left = 1 << curr;
|
2752
|
+
while (curr + drop < max) {
|
2753
|
+
left -= count[curr + drop];
|
2754
|
+
if (left <= 0) { break; }
|
2755
|
+
curr++;
|
2756
|
+
left <<= 1;
|
2757
|
+
}
|
2758
|
+
|
2759
|
+
/* check for enough space */
|
2760
|
+
used += 1 << curr;
|
2761
|
+
if ((type === LENS && used > ENOUGH_LENS) ||
|
2762
|
+
(type === DISTS && used > ENOUGH_DISTS)) {
|
2763
|
+
return 1;
|
2764
|
+
}
|
2765
|
+
|
2766
|
+
/* point entry in root table to sub-table */
|
2767
|
+
low = huff & mask;
|
2768
|
+
/*table.op[low] = curr;
|
2769
|
+
table.bits[low] = root;
|
2770
|
+
table.val[low] = next - opts.table_index;*/
|
2771
|
+
table[low] = (root << 24) | (curr << 16) | (next - table_index) |0;
|
2772
|
+
}
|
2773
|
+
}
|
2774
|
+
|
2775
|
+
/* fill in remaining table entry if code is incomplete (guaranteed to have
|
2776
|
+
at most one remaining entry, since if the code is incomplete, the
|
2777
|
+
maximum code length that was allowed to get this far is one bit) */
|
2778
|
+
if (huff !== 0) {
|
2779
|
+
//table.op[next + huff] = 64; /* invalid code marker */
|
2780
|
+
//table.bits[next + huff] = len - drop;
|
2781
|
+
//table.val[next + huff] = 0;
|
2782
|
+
table[next + huff] = ((len - drop) << 24) | (64 << 16) |0;
|
2783
|
+
}
|
2784
|
+
|
2785
|
+
/* set return parameters */
|
2786
|
+
//opts.table_index += used;
|
2787
|
+
opts.bits = root;
|
2788
|
+
return 0;
|
2789
|
+
};
|
2790
|
+
|
2791
|
+
},{"../utils/common":1}],10:[function(require,module,exports){
|
2792
|
+
'use strict';
|
2793
|
+
|
2794
|
+
// (C) 1995-2013 Jean-loup Gailly and Mark Adler
|
2795
|
+
// (C) 2014-2017 Vitaly Puzrin and Andrey Tupitsin
|
2796
|
+
//
|
2797
|
+
// This software is provided 'as-is', without any express or implied
|
2798
|
+
// warranty. In no event will the authors be held liable for any damages
|
2799
|
+
// arising from the use of this software.
|
2800
|
+
//
|
2801
|
+
// Permission is granted to anyone to use this software for any purpose,
|
2802
|
+
// including commercial applications, and to alter it and redistribute it
|
2803
|
+
// freely, subject to the following restrictions:
|
2804
|
+
//
|
2805
|
+
// 1. The origin of this software must not be misrepresented; you must not
|
2806
|
+
// claim that you wrote the original software. If you use this software
|
2807
|
+
// in a product, an acknowledgment in the product documentation would be
|
2808
|
+
// appreciated but is not required.
|
2809
|
+
// 2. Altered source versions must be plainly marked as such, and must not be
|
2810
|
+
// misrepresented as being the original software.
|
2811
|
+
// 3. This notice may not be removed or altered from any source distribution.
|
2812
|
+
|
2813
|
+
module.exports = {
|
2814
|
+
2: 'need dictionary', /* Z_NEED_DICT 2 */
|
2815
|
+
1: 'stream end', /* Z_STREAM_END 1 */
|
2816
|
+
0: '', /* Z_OK 0 */
|
2817
|
+
'-1': 'file error', /* Z_ERRNO (-1) */
|
2818
|
+
'-2': 'stream error', /* Z_STREAM_ERROR (-2) */
|
2819
|
+
'-3': 'data error', /* Z_DATA_ERROR (-3) */
|
2820
|
+
'-4': 'insufficient memory', /* Z_MEM_ERROR (-4) */
|
2821
|
+
'-5': 'buffer error', /* Z_BUF_ERROR (-5) */
|
2822
|
+
'-6': 'incompatible version' /* Z_VERSION_ERROR (-6) */
|
2823
|
+
};
|
2824
|
+
|
2825
|
+
},{}],11:[function(require,module,exports){
|
2826
|
+
'use strict';
|
2827
|
+
|
2828
|
+
// (C) 1995-2013 Jean-loup Gailly and Mark Adler
|
2829
|
+
// (C) 2014-2017 Vitaly Puzrin and Andrey Tupitsin
|
2830
|
+
//
|
2831
|
+
// This software is provided 'as-is', without any express or implied
|
2832
|
+
// warranty. In no event will the authors be held liable for any damages
|
2833
|
+
// arising from the use of this software.
|
2834
|
+
//
|
2835
|
+
// Permission is granted to anyone to use this software for any purpose,
|
2836
|
+
// including commercial applications, and to alter it and redistribute it
|
2837
|
+
// freely, subject to the following restrictions:
|
2838
|
+
//
|
2839
|
+
// 1. The origin of this software must not be misrepresented; you must not
|
2840
|
+
// claim that you wrote the original software. If you use this software
|
2841
|
+
// in a product, an acknowledgment in the product documentation would be
|
2842
|
+
// appreciated but is not required.
|
2843
|
+
// 2. Altered source versions must be plainly marked as such, and must not be
|
2844
|
+
// misrepresented as being the original software.
|
2845
|
+
// 3. This notice may not be removed or altered from any source distribution.
|
2846
|
+
|
2847
|
+
function ZStream() {
|
2848
|
+
/* next input byte */
|
2849
|
+
this.input = null; // JS specific, because we have no pointers
|
2850
|
+
this.next_in = 0;
|
2851
|
+
/* number of bytes available at input */
|
2852
|
+
this.avail_in = 0;
|
2853
|
+
/* total number of input bytes read so far */
|
2854
|
+
this.total_in = 0;
|
2855
|
+
/* next output byte should be put there */
|
2856
|
+
this.output = null; // JS specific, because we have no pointers
|
2857
|
+
this.next_out = 0;
|
2858
|
+
/* remaining free space at output */
|
2859
|
+
this.avail_out = 0;
|
2860
|
+
/* total number of bytes output so far */
|
2861
|
+
this.total_out = 0;
|
2862
|
+
/* last error message, NULL if no error */
|
2863
|
+
this.msg = ''/*Z_NULL*/;
|
2864
|
+
/* not visible by applications */
|
2865
|
+
this.state = null;
|
2866
|
+
/* best guess about the data type: binary or text */
|
2867
|
+
this.data_type = 2/*Z_UNKNOWN*/;
|
2868
|
+
/* adler32 value of the uncompressed data */
|
2869
|
+
this.adler = 0;
|
2870
|
+
}
|
2871
|
+
|
2872
|
+
module.exports = ZStream;
|
2873
|
+
|
2874
|
+
},{}],"/lib/inflate.js":[function(require,module,exports){
|
2875
|
+
'use strict';
|
2876
|
+
|
2877
|
+
|
2878
|
+
var zlib_inflate = require('./zlib/inflate');
|
2879
|
+
var utils = require('./utils/common');
|
2880
|
+
var strings = require('./utils/strings');
|
2881
|
+
var c = require('./zlib/constants');
|
2882
|
+
var msg = require('./zlib/messages');
|
2883
|
+
var ZStream = require('./zlib/zstream');
|
2884
|
+
var GZheader = require('./zlib/gzheader');
|
2885
|
+
|
2886
|
+
var toString = Object.prototype.toString;
|
2887
|
+
|
2888
|
+
/**
|
2889
|
+
* class Inflate
|
2890
|
+
*
|
2891
|
+
* Generic JS-style wrapper for zlib calls. If you don't need
|
2892
|
+
* streaming behaviour - use more simple functions: [[inflate]]
|
2893
|
+
* and [[inflateRaw]].
|
2894
|
+
**/
|
2895
|
+
|
2896
|
+
/* internal
|
2897
|
+
* inflate.chunks -> Array
|
2898
|
+
*
|
2899
|
+
* Chunks of output data, if [[Inflate#onData]] not overridden.
|
2900
|
+
**/
|
2901
|
+
|
2902
|
+
/**
|
2903
|
+
* Inflate.result -> Uint8Array|Array|String
|
2904
|
+
*
|
2905
|
+
* Uncompressed result, generated by default [[Inflate#onData]]
|
2906
|
+
* and [[Inflate#onEnd]] handlers. Filled after you push last chunk
|
2907
|
+
* (call [[Inflate#push]] with `Z_FINISH` / `true` param) or if you
|
2908
|
+
* push a chunk with explicit flush (call [[Inflate#push]] with
|
2909
|
+
* `Z_SYNC_FLUSH` param).
|
2910
|
+
**/
|
2911
|
+
|
2912
|
+
/**
|
2913
|
+
* Inflate.err -> Number
|
2914
|
+
*
|
2915
|
+
* Error code after inflate finished. 0 (Z_OK) on success.
|
2916
|
+
* Should be checked if broken data possible.
|
2917
|
+
**/
|
2918
|
+
|
2919
|
+
/**
|
2920
|
+
* Inflate.msg -> String
|
2921
|
+
*
|
2922
|
+
* Error message, if [[Inflate.err]] != 0
|
2923
|
+
**/
|
2924
|
+
|
2925
|
+
|
2926
|
+
/**
|
2927
|
+
* new Inflate(options)
|
2928
|
+
* - options (Object): zlib inflate options.
|
2929
|
+
*
|
2930
|
+
* Creates new inflator instance with specified params. Throws exception
|
2931
|
+
* on bad params. Supported options:
|
2932
|
+
*
|
2933
|
+
* - `windowBits`
|
2934
|
+
* - `dictionary`
|
2935
|
+
*
|
2936
|
+
* [http://zlib.net/manual.html#Advanced](http://zlib.net/manual.html#Advanced)
|
2937
|
+
* for more information on these.
|
2938
|
+
*
|
2939
|
+
* Additional options, for internal needs:
|
2940
|
+
*
|
2941
|
+
* - `chunkSize` - size of generated data chunks (16K by default)
|
2942
|
+
* - `raw` (Boolean) - do raw inflate
|
2943
|
+
* - `to` (String) - if equal to 'string', then result will be converted
|
2944
|
+
* from utf8 to utf16 (javascript) string. When string output requested,
|
2945
|
+
* chunk length can differ from `chunkSize`, depending on content.
|
2946
|
+
*
|
2947
|
+
* By default, when no options set, autodetect deflate/gzip data format via
|
2948
|
+
* wrapper header.
|
2949
|
+
*
|
2950
|
+
* ##### Example:
|
2951
|
+
*
|
2952
|
+
* ```javascript
|
2953
|
+
* var pako = require('pako')
|
2954
|
+
* , chunk1 = Uint8Array([1,2,3,4,5,6,7,8,9])
|
2955
|
+
* , chunk2 = Uint8Array([10,11,12,13,14,15,16,17,18,19]);
|
2956
|
+
*
|
2957
|
+
* var inflate = new pako.Inflate({ level: 3});
|
2958
|
+
*
|
2959
|
+
* inflate.push(chunk1, false);
|
2960
|
+
* inflate.push(chunk2, true); // true -> last chunk
|
2961
|
+
*
|
2962
|
+
* if (inflate.err) { throw new Error(inflate.err); }
|
2963
|
+
*
|
2964
|
+
* console.log(inflate.result);
|
2965
|
+
* ```
|
2966
|
+
**/
|
2967
|
+
function Inflate(options) {
|
2968
|
+
if (!(this instanceof Inflate)) return new Inflate(options);
|
2969
|
+
|
2970
|
+
this.options = utils.assign({
|
2971
|
+
chunkSize: 16384,
|
2972
|
+
windowBits: 0,
|
2973
|
+
to: ''
|
2974
|
+
}, options || {});
|
2975
|
+
|
2976
|
+
var opt = this.options;
|
2977
|
+
|
2978
|
+
// Force window size for `raw` data, if not set directly,
|
2979
|
+
// because we have no header for autodetect.
|
2980
|
+
if (opt.raw && (opt.windowBits >= 0) && (opt.windowBits < 16)) {
|
2981
|
+
opt.windowBits = -opt.windowBits;
|
2982
|
+
if (opt.windowBits === 0) { opt.windowBits = -15; }
|
2983
|
+
}
|
2984
|
+
|
2985
|
+
// If `windowBits` not defined (and mode not raw) - set autodetect flag for gzip/deflate
|
2986
|
+
if ((opt.windowBits >= 0) && (opt.windowBits < 16) &&
|
2987
|
+
!(options && options.windowBits)) {
|
2988
|
+
opt.windowBits += 32;
|
2989
|
+
}
|
2990
|
+
|
2991
|
+
// Gzip header has no info about windows size, we can do autodetect only
|
2992
|
+
// for deflate. So, if window size not set, force it to max when gzip possible
|
2993
|
+
if ((opt.windowBits > 15) && (opt.windowBits < 48)) {
|
2994
|
+
// bit 3 (16) -> gzipped data
|
2995
|
+
// bit 4 (32) -> autodetect gzip/deflate
|
2996
|
+
if ((opt.windowBits & 15) === 0) {
|
2997
|
+
opt.windowBits |= 15;
|
2998
|
+
}
|
2999
|
+
}
|
3000
|
+
|
3001
|
+
this.err = 0; // error code, if happens (0 = Z_OK)
|
3002
|
+
this.msg = ''; // error message
|
3003
|
+
this.ended = false; // used to avoid multiple onEnd() calls
|
3004
|
+
this.chunks = []; // chunks of compressed data
|
3005
|
+
|
3006
|
+
this.strm = new ZStream();
|
3007
|
+
this.strm.avail_out = 0;
|
3008
|
+
|
3009
|
+
var status = zlib_inflate.inflateInit2(
|
3010
|
+
this.strm,
|
3011
|
+
opt.windowBits
|
3012
|
+
);
|
3013
|
+
|
3014
|
+
if (status !== c.Z_OK) {
|
3015
|
+
throw new Error(msg[status]);
|
3016
|
+
}
|
3017
|
+
|
3018
|
+
this.header = new GZheader();
|
3019
|
+
|
3020
|
+
zlib_inflate.inflateGetHeader(this.strm, this.header);
|
3021
|
+
|
3022
|
+
// Setup dictionary
|
3023
|
+
if (opt.dictionary) {
|
3024
|
+
// Convert data if needed
|
3025
|
+
if (typeof opt.dictionary === 'string') {
|
3026
|
+
opt.dictionary = strings.string2buf(opt.dictionary);
|
3027
|
+
} else if (toString.call(opt.dictionary) === '[object ArrayBuffer]') {
|
3028
|
+
opt.dictionary = new Uint8Array(opt.dictionary);
|
3029
|
+
}
|
3030
|
+
if (opt.raw) { //In raw mode we need to set the dictionary early
|
3031
|
+
status = zlib_inflate.inflateSetDictionary(this.strm, opt.dictionary);
|
3032
|
+
if (status !== c.Z_OK) {
|
3033
|
+
throw new Error(msg[status]);
|
3034
|
+
}
|
3035
|
+
}
|
3036
|
+
}
|
3037
|
+
}
|
3038
|
+
|
3039
|
+
/**
|
3040
|
+
* Inflate#push(data[, mode]) -> Boolean
|
3041
|
+
* - data (Uint8Array|Array|ArrayBuffer|String): input data
|
3042
|
+
* - mode (Number|Boolean): 0..6 for corresponding Z_NO_FLUSH..Z_TREE modes.
|
3043
|
+
* See constants. Skipped or `false` means Z_NO_FLUSH, `true` means Z_FINISH.
|
3044
|
+
*
|
3045
|
+
* Sends input data to inflate pipe, generating [[Inflate#onData]] calls with
|
3046
|
+
* new output chunks. Returns `true` on success. The last data block must have
|
3047
|
+
* mode Z_FINISH (or `true`). That will flush internal pending buffers and call
|
3048
|
+
* [[Inflate#onEnd]]. For interim explicit flushes (without ending the stream) you
|
3049
|
+
* can use mode Z_SYNC_FLUSH, keeping the decompression context.
|
3050
|
+
*
|
3051
|
+
* On fail call [[Inflate#onEnd]] with error code and return false.
|
3052
|
+
*
|
3053
|
+
* We strongly recommend to use `Uint8Array` on input for best speed (output
|
3054
|
+
* format is detected automatically). Also, don't skip last param and always
|
3055
|
+
* use the same type in your code (boolean or number). That will improve JS speed.
|
3056
|
+
*
|
3057
|
+
* For regular `Array`-s make sure all elements are [0..255].
|
3058
|
+
*
|
3059
|
+
* ##### Example
|
3060
|
+
*
|
3061
|
+
* ```javascript
|
3062
|
+
* push(chunk, false); // push one of data chunks
|
3063
|
+
* ...
|
3064
|
+
* push(chunk, true); // push last chunk
|
3065
|
+
* ```
|
3066
|
+
**/
|
3067
|
+
Inflate.prototype.push = function (data, mode) {
|
3068
|
+
var strm = this.strm;
|
3069
|
+
var chunkSize = this.options.chunkSize;
|
3070
|
+
var dictionary = this.options.dictionary;
|
3071
|
+
var status, _mode;
|
3072
|
+
var next_out_utf8, tail, utf8str;
|
3073
|
+
|
3074
|
+
// Flag to properly process Z_BUF_ERROR on testing inflate call
|
3075
|
+
// when we check that all output data was flushed.
|
3076
|
+
var allowBufError = false;
|
3077
|
+
|
3078
|
+
if (this.ended) { return false; }
|
3079
|
+
_mode = (mode === ~~mode) ? mode : ((mode === true) ? c.Z_FINISH : c.Z_NO_FLUSH);
|
3080
|
+
|
3081
|
+
// Convert data if needed
|
3082
|
+
if (typeof data === 'string') {
|
3083
|
+
// Only binary strings can be decompressed on practice
|
3084
|
+
strm.input = strings.binstring2buf(data);
|
3085
|
+
} else if (toString.call(data) === '[object ArrayBuffer]') {
|
3086
|
+
strm.input = new Uint8Array(data);
|
3087
|
+
} else {
|
3088
|
+
strm.input = data;
|
3089
|
+
}
|
3090
|
+
|
3091
|
+
strm.next_in = 0;
|
3092
|
+
strm.avail_in = strm.input.length;
|
3093
|
+
|
3094
|
+
do {
|
3095
|
+
if (strm.avail_out === 0) {
|
3096
|
+
strm.output = new utils.Buf8(chunkSize);
|
3097
|
+
strm.next_out = 0;
|
3098
|
+
strm.avail_out = chunkSize;
|
3099
|
+
}
|
3100
|
+
|
3101
|
+
status = zlib_inflate.inflate(strm, c.Z_NO_FLUSH); /* no bad return value */
|
3102
|
+
|
3103
|
+
if (status === c.Z_NEED_DICT && dictionary) {
|
3104
|
+
status = zlib_inflate.inflateSetDictionary(this.strm, dictionary);
|
3105
|
+
}
|
3106
|
+
|
3107
|
+
if (status === c.Z_BUF_ERROR && allowBufError === true) {
|
3108
|
+
status = c.Z_OK;
|
3109
|
+
allowBufError = false;
|
3110
|
+
}
|
3111
|
+
|
3112
|
+
if (status !== c.Z_STREAM_END && status !== c.Z_OK) {
|
3113
|
+
this.onEnd(status);
|
3114
|
+
this.ended = true;
|
3115
|
+
return false;
|
3116
|
+
}
|
3117
|
+
|
3118
|
+
if (strm.next_out) {
|
3119
|
+
if (strm.avail_out === 0 || status === c.Z_STREAM_END || (strm.avail_in === 0 && (_mode === c.Z_FINISH || _mode === c.Z_SYNC_FLUSH))) {
|
3120
|
+
|
3121
|
+
if (this.options.to === 'string') {
|
3122
|
+
|
3123
|
+
next_out_utf8 = strings.utf8border(strm.output, strm.next_out);
|
3124
|
+
|
3125
|
+
tail = strm.next_out - next_out_utf8;
|
3126
|
+
utf8str = strings.buf2string(strm.output, next_out_utf8);
|
3127
|
+
|
3128
|
+
// move tail
|
3129
|
+
strm.next_out = tail;
|
3130
|
+
strm.avail_out = chunkSize - tail;
|
3131
|
+
if (tail) { utils.arraySet(strm.output, strm.output, next_out_utf8, tail, 0); }
|
3132
|
+
|
3133
|
+
this.onData(utf8str);
|
3134
|
+
|
3135
|
+
} else {
|
3136
|
+
this.onData(utils.shrinkBuf(strm.output, strm.next_out));
|
3137
|
+
}
|
3138
|
+
}
|
3139
|
+
}
|
3140
|
+
|
3141
|
+
// When no more input data, we should check that internal inflate buffers
|
3142
|
+
// are flushed. The only way to do it when avail_out = 0 - run one more
|
3143
|
+
// inflate pass. But if output data not exists, inflate return Z_BUF_ERROR.
|
3144
|
+
// Here we set flag to process this error properly.
|
3145
|
+
//
|
3146
|
+
// NOTE. Deflate does not return error in this case and does not needs such
|
3147
|
+
// logic.
|
3148
|
+
if (strm.avail_in === 0 && strm.avail_out === 0) {
|
3149
|
+
allowBufError = true;
|
3150
|
+
}
|
3151
|
+
|
3152
|
+
} while ((strm.avail_in > 0 || strm.avail_out === 0) && status !== c.Z_STREAM_END);
|
3153
|
+
|
3154
|
+
if (status === c.Z_STREAM_END) {
|
3155
|
+
_mode = c.Z_FINISH;
|
3156
|
+
}
|
3157
|
+
|
3158
|
+
// Finalize on the last chunk.
|
3159
|
+
if (_mode === c.Z_FINISH) {
|
3160
|
+
status = zlib_inflate.inflateEnd(this.strm);
|
3161
|
+
this.onEnd(status);
|
3162
|
+
this.ended = true;
|
3163
|
+
return status === c.Z_OK;
|
3164
|
+
}
|
3165
|
+
|
3166
|
+
// callback interim results if Z_SYNC_FLUSH.
|
3167
|
+
if (_mode === c.Z_SYNC_FLUSH) {
|
3168
|
+
this.onEnd(c.Z_OK);
|
3169
|
+
strm.avail_out = 0;
|
3170
|
+
return true;
|
3171
|
+
}
|
3172
|
+
|
3173
|
+
return true;
|
3174
|
+
};
|
3175
|
+
|
3176
|
+
|
3177
|
+
/**
|
3178
|
+
* Inflate#onData(chunk) -> Void
|
3179
|
+
* - chunk (Uint8Array|Array|String): output data. Type of array depends
|
3180
|
+
* on js engine support. When string output requested, each chunk
|
3181
|
+
* will be string.
|
3182
|
+
*
|
3183
|
+
* By default, stores data blocks in `chunks[]` property and glue
|
3184
|
+
* those in `onEnd`. Override this handler, if you need another behaviour.
|
3185
|
+
**/
|
3186
|
+
Inflate.prototype.onData = function (chunk) {
|
3187
|
+
this.chunks.push(chunk);
|
3188
|
+
};
|
3189
|
+
|
3190
|
+
|
3191
|
+
/**
|
3192
|
+
* Inflate#onEnd(status) -> Void
|
3193
|
+
* - status (Number): inflate status. 0 (Z_OK) on success,
|
3194
|
+
* other if not.
|
3195
|
+
*
|
3196
|
+
* Called either after you tell inflate that the input stream is
|
3197
|
+
* complete (Z_FINISH) or should be flushed (Z_SYNC_FLUSH)
|
3198
|
+
* or if an error happened. By default - join collected chunks,
|
3199
|
+
* free memory and fill `results` / `err` properties.
|
3200
|
+
**/
|
3201
|
+
Inflate.prototype.onEnd = function (status) {
|
3202
|
+
// On success - join
|
3203
|
+
if (status === c.Z_OK) {
|
3204
|
+
if (this.options.to === 'string') {
|
3205
|
+
// Glue & convert here, until we teach pako to send
|
3206
|
+
// utf8 aligned strings to onData
|
3207
|
+
this.result = this.chunks.join('');
|
3208
|
+
} else {
|
3209
|
+
this.result = utils.flattenChunks(this.chunks);
|
3210
|
+
}
|
3211
|
+
}
|
3212
|
+
this.chunks = [];
|
3213
|
+
this.err = status;
|
3214
|
+
this.msg = this.strm.msg;
|
3215
|
+
};
|
3216
|
+
|
3217
|
+
|
3218
|
+
/**
|
3219
|
+
* inflate(data[, options]) -> Uint8Array|Array|String
|
3220
|
+
* - data (Uint8Array|Array|String): input data to decompress.
|
3221
|
+
* - options (Object): zlib inflate options.
|
3222
|
+
*
|
3223
|
+
* Decompress `data` with inflate/ungzip and `options`. Autodetect
|
3224
|
+
* format via wrapper header by default. That's why we don't provide
|
3225
|
+
* separate `ungzip` method.
|
3226
|
+
*
|
3227
|
+
* Supported options are:
|
3228
|
+
*
|
3229
|
+
* - windowBits
|
3230
|
+
*
|
3231
|
+
* [http://zlib.net/manual.html#Advanced](http://zlib.net/manual.html#Advanced)
|
3232
|
+
* for more information.
|
3233
|
+
*
|
3234
|
+
* Sugar (options):
|
3235
|
+
*
|
3236
|
+
* - `raw` (Boolean) - say that we work with raw stream, if you don't wish to specify
|
3237
|
+
* negative windowBits implicitly.
|
3238
|
+
* - `to` (String) - if equal to 'string', then result will be converted
|
3239
|
+
* from utf8 to utf16 (javascript) string. When string output requested,
|
3240
|
+
* chunk length can differ from `chunkSize`, depending on content.
|
3241
|
+
*
|
3242
|
+
*
|
3243
|
+
* ##### Example:
|
3244
|
+
*
|
3245
|
+
* ```javascript
|
3246
|
+
* var pako = require('pako')
|
3247
|
+
* , input = pako.deflate([1,2,3,4,5,6,7,8,9])
|
3248
|
+
* , output;
|
3249
|
+
*
|
3250
|
+
* try {
|
3251
|
+
* output = pako.inflate(input);
|
3252
|
+
* } catch (err)
|
3253
|
+
* console.log(err);
|
3254
|
+
* }
|
3255
|
+
* ```
|
3256
|
+
**/
|
3257
|
+
function inflate(input, options) {
|
3258
|
+
var inflator = new Inflate(options);
|
3259
|
+
|
3260
|
+
inflator.push(input, true);
|
3261
|
+
|
3262
|
+
// That will never happens, if you don't cheat with options :)
|
3263
|
+
if (inflator.err) { throw inflator.msg || msg[inflator.err]; }
|
3264
|
+
|
3265
|
+
return inflator.result;
|
3266
|
+
}
|
3267
|
+
|
3268
|
+
|
3269
|
+
/**
|
3270
|
+
* inflateRaw(data[, options]) -> Uint8Array|Array|String
|
3271
|
+
* - data (Uint8Array|Array|String): input data to decompress.
|
3272
|
+
* - options (Object): zlib inflate options.
|
3273
|
+
*
|
3274
|
+
* The same as [[inflate]], but creates raw data, without wrapper
|
3275
|
+
* (header and adler32 crc).
|
3276
|
+
**/
|
3277
|
+
function inflateRaw(input, options) {
|
3278
|
+
options = options || {};
|
3279
|
+
options.raw = true;
|
3280
|
+
return inflate(input, options);
|
3281
|
+
}
|
3282
|
+
|
3283
|
+
|
3284
|
+
/**
|
3285
|
+
* ungzip(data[, options]) -> Uint8Array|Array|String
|
3286
|
+
* - data (Uint8Array|Array|String): input data to decompress.
|
3287
|
+
* - options (Object): zlib inflate options.
|
3288
|
+
*
|
3289
|
+
* Just shortcut to [[inflate]], because it autodetects format
|
3290
|
+
* by header.content. Done for convenience.
|
3291
|
+
**/
|
3292
|
+
|
3293
|
+
|
3294
|
+
exports.Inflate = Inflate;
|
3295
|
+
exports.inflate = inflate;
|
3296
|
+
exports.inflateRaw = inflateRaw;
|
3297
|
+
exports.ungzip = inflate;
|
3298
|
+
|
3299
|
+
},{"./utils/common":1,"./utils/strings":2,"./zlib/constants":4,"./zlib/gzheader":6,"./zlib/inflate":8,"./zlib/messages":10,"./zlib/zstream":11}]},{},[])("/lib/inflate.js")
|
3300
|
+
});
|