ganach-cli 6.12.2
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of ganach-cli might be problematic. Click here for more details.
- package/LICENSE +22 -0
- package/README.md +381 -0
- package/cli.js +245 -0
- package/node_modules/@types/bn.js/LICENSE +21 -0
- package/node_modules/@types/bn.js/README.md +16 -0
- package/node_modules/@types/bn.js/index.d.ts +586 -0
- package/node_modules/@types/bn.js/package.json +40 -0
- package/node_modules/@types/node/LICENSE +21 -0
- package/node_modules/@types/node/README.md +16 -0
- package/node_modules/@types/node/assert.d.ts +84 -0
- package/node_modules/@types/node/async_hooks.d.ts +226 -0
- package/node_modules/@types/node/base.d.ts +20 -0
- package/node_modules/@types/node/buffer.d.ts +22 -0
- package/node_modules/@types/node/child_process.d.ts +505 -0
- package/node_modules/@types/node/cluster.d.ts +262 -0
- package/node_modules/@types/node/console.d.ts +133 -0
- package/node_modules/@types/node/constants.d.ts +8 -0
- package/node_modules/@types/node/crypto.d.ts +707 -0
- package/node_modules/@types/node/dgram.d.ts +141 -0
- package/node_modules/@types/node/dns.d.ts +371 -0
- package/node_modules/@types/node/domain.d.ts +24 -0
- package/node_modules/@types/node/events.d.ts +83 -0
- package/node_modules/@types/node/fs/promises.d.ts +539 -0
- package/node_modules/@types/node/fs.d.ts +2156 -0
- package/node_modules/@types/node/globals.d.ts +606 -0
- package/node_modules/@types/node/globals.global.d.ts +1 -0
- package/node_modules/@types/node/http.d.ts +414 -0
- package/node_modules/@types/node/http2.d.ts +952 -0
- package/node_modules/@types/node/https.d.ts +37 -0
- package/node_modules/@types/node/index.d.ts +61 -0
- package/node_modules/@types/node/inspector.d.ts +3041 -0
- package/node_modules/@types/node/module.d.ts +52 -0
- package/node_modules/@types/node/net.d.ts +268 -0
- package/node_modules/@types/node/os.d.ts +239 -0
- package/node_modules/@types/node/package.json +255 -0
- package/node_modules/@types/node/path.d.ts +153 -0
- package/node_modules/@types/node/perf_hooks.d.ts +271 -0
- package/node_modules/@types/node/process.d.ts +406 -0
- package/node_modules/@types/node/punycode.d.ts +12 -0
- package/node_modules/@types/node/querystring.d.ts +28 -0
- package/node_modules/@types/node/readline.d.ts +171 -0
- package/node_modules/@types/node/repl.d.ts +387 -0
- package/node_modules/@types/node/stream.d.ts +351 -0
- package/node_modules/@types/node/string_decoder.d.ts +7 -0
- package/node_modules/@types/node/timers.d.ts +16 -0
- package/node_modules/@types/node/tls.d.ts +777 -0
- package/node_modules/@types/node/trace_events.d.ts +61 -0
- package/node_modules/@types/node/ts3.4/assert.d.ts +57 -0
- package/node_modules/@types/node/ts3.4/base.d.ts +56 -0
- package/node_modules/@types/node/ts3.4/globals.global.d.ts +1 -0
- package/node_modules/@types/node/ts3.4/index.d.ts +8 -0
- package/node_modules/@types/node/ts3.6/base.d.ts +23 -0
- package/node_modules/@types/node/ts3.6/index.d.ts +8 -0
- package/node_modules/@types/node/tty.d.ts +66 -0
- package/node_modules/@types/node/url.d.ts +110 -0
- package/node_modules/@types/node/util.d.ts +196 -0
- package/node_modules/@types/node/v8.d.ts +187 -0
- package/node_modules/@types/node/vm.d.ts +146 -0
- package/node_modules/@types/node/wasi.d.ts +52 -0
- package/node_modules/@types/node/worker_threads.d.ts +192 -0
- package/node_modules/@types/node/zlib.d.ts +352 -0
- package/node_modules/@types/pbkdf2/LICENSE +21 -0
- package/node_modules/@types/pbkdf2/README.md +16 -0
- package/node_modules/@types/pbkdf2/index.d.ts +41 -0
- package/node_modules/@types/pbkdf2/package.json +30 -0
- package/node_modules/@types/secp256k1/LICENSE +21 -0
- package/node_modules/@types/secp256k1/README.md +16 -0
- package/node_modules/@types/secp256k1/index.d.ts +141 -0
- package/node_modules/@types/secp256k1/package.json +30 -0
- package/node_modules/ansi-regex/index.js +14 -0
- package/node_modules/ansi-regex/license +9 -0
- package/node_modules/ansi-regex/package.json +57 -0
- package/node_modules/ansi-regex/readme.md +87 -0
- package/node_modules/ansi-styles/index.js +165 -0
- package/node_modules/ansi-styles/license +9 -0
- package/node_modules/ansi-styles/package.json +60 -0
- package/node_modules/ansi-styles/readme.md +147 -0
- package/node_modules/base-x/LICENSE.md +22 -0
- package/node_modules/base-x/README.md +67 -0
- package/node_modules/base-x/package.json +53 -0
- package/node_modules/base-x/src/index.d.ts +10 -0
- package/node_modules/base-x/src/index.js +123 -0
- package/node_modules/blakejs/.npmignore +1 -0
- package/node_modules/blakejs/.travis.yml +3 -0
- package/node_modules/blakejs/README.md +112 -0
- package/node_modules/blakejs/blake2b.js +273 -0
- package/node_modules/blakejs/blake2s.js +190 -0
- package/node_modules/blakejs/generated_test_vectors.txt +100 -0
- package/node_modules/blakejs/index.js +15 -0
- package/node_modules/blakejs/package.json +27 -0
- package/node_modules/blakejs/test_blake2b.js +88 -0
- package/node_modules/blakejs/test_blake2s.js +80 -0
- package/node_modules/blakejs/util.js +81 -0
- package/node_modules/bn.js/README.md +221 -0
- package/node_modules/bn.js/lib/bn.js +3433 -0
- package/node_modules/bn.js/package.json +40 -0
- package/node_modules/bn.js/util/genCombMulTo.js +65 -0
- package/node_modules/bn.js/util/genCombMulTo10.js +65 -0
- package/node_modules/brorand/.npmignore +2 -0
- package/node_modules/brorand/README.md +26 -0
- package/node_modules/brorand/index.js +65 -0
- package/node_modules/brorand/package.json +35 -0
- package/node_modules/brorand/test/api-test.js +8 -0
- package/node_modules/browserify-aes/.travis.yml +15 -0
- package/node_modules/browserify-aes/LICENSE +21 -0
- package/node_modules/browserify-aes/README.md +19 -0
- package/node_modules/browserify-aes/aes.js +228 -0
- package/node_modules/browserify-aes/authCipher.js +117 -0
- package/node_modules/browserify-aes/browser.js +13 -0
- package/node_modules/browserify-aes/decrypter.js +124 -0
- package/node_modules/browserify-aes/encrypter.js +114 -0
- package/node_modules/browserify-aes/ghash.js +89 -0
- package/node_modules/browserify-aes/incr32.js +15 -0
- package/node_modules/browserify-aes/index.js +7 -0
- package/node_modules/browserify-aes/modes/cbc.js +17 -0
- package/node_modules/browserify-aes/modes/cfb.js +33 -0
- package/node_modules/browserify-aes/modes/cfb1.js +42 -0
- package/node_modules/browserify-aes/modes/cfb8.js +25 -0
- package/node_modules/browserify-aes/modes/ctr.js +30 -0
- package/node_modules/browserify-aes/modes/ecb.js +7 -0
- package/node_modules/browserify-aes/modes/index.js +18 -0
- package/node_modules/browserify-aes/modes/list.json +191 -0
- package/node_modules/browserify-aes/modes/ofb.js +16 -0
- package/node_modules/browserify-aes/package.json +47 -0
- package/node_modules/browserify-aes/streamCipher.js +27 -0
- package/node_modules/bs58/README.md +71 -0
- package/node_modules/bs58/index.js +4 -0
- package/node_modules/bs58/package.json +41 -0
- package/node_modules/bs58check/LICENSE +21 -0
- package/node_modules/bs58check/README.md +27 -0
- package/node_modules/bs58check/base.js +50 -0
- package/node_modules/bs58check/index.js +12 -0
- package/node_modules/bs58check/package.json +56 -0
- package/node_modules/buffer-from/LICENSE +21 -0
- package/node_modules/buffer-from/index.js +69 -0
- package/node_modules/buffer-from/package.json +23 -0
- package/node_modules/buffer-from/readme.md +69 -0
- package/node_modules/buffer-xor/.npmignore +1 -0
- package/node_modules/buffer-xor/.travis.yml +9 -0
- package/node_modules/buffer-xor/LICENSE +21 -0
- package/node_modules/buffer-xor/README.md +41 -0
- package/node_modules/buffer-xor/index.js +10 -0
- package/node_modules/buffer-xor/inline.js +1 -0
- package/node_modules/buffer-xor/inplace.js +9 -0
- package/node_modules/buffer-xor/package.json +41 -0
- package/node_modules/buffer-xor/test/fixtures.json +23 -0
- package/node_modules/buffer-xor/test/index.js +38 -0
- package/node_modules/camelcase/index.d.ts +63 -0
- package/node_modules/camelcase/index.js +76 -0
- package/node_modules/camelcase/license +9 -0
- package/node_modules/camelcase/package.json +47 -0
- package/node_modules/camelcase/readme.md +99 -0
- package/node_modules/cipher-base/.eslintrc +3 -0
- package/node_modules/cipher-base/.npmignore +1 -0
- package/node_modules/cipher-base/.travis.yml +6 -0
- package/node_modules/cipher-base/LICENSE +21 -0
- package/node_modules/cipher-base/README.md +17 -0
- package/node_modules/cipher-base/index.js +99 -0
- package/node_modules/cipher-base/package.json +36 -0
- package/node_modules/cipher-base/test.js +111 -0
- package/node_modules/cliui/LICENSE.txt +14 -0
- package/node_modules/cliui/README.md +115 -0
- package/node_modules/cliui/index.js +324 -0
- package/node_modules/cliui/package.json +71 -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 +868 -0
- package/node_modules/color-convert/index.js +78 -0
- package/node_modules/color-convert/package.json +50 -0
- package/node_modules/color-convert/route.js +97 -0
- package/node_modules/color-name/.eslintrc.json +43 -0
- package/node_modules/color-name/.npmignore +107 -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 +29 -0
- package/node_modules/color-name/test.js +7 -0
- package/node_modules/create-hash/.travis.yml +17 -0
- package/node_modules/create-hash/LICENSE +21 -0
- package/node_modules/create-hash/README.md +19 -0
- package/node_modules/create-hash/browser.js +30 -0
- package/node_modules/create-hash/index.js +1 -0
- package/node_modules/create-hash/md5.js +5 -0
- package/node_modules/create-hash/package.json +43 -0
- package/node_modules/create-hash/test.js +41 -0
- package/node_modules/create-hmac/LICENSE +21 -0
- package/node_modules/create-hmac/README.md +20 -0
- package/node_modules/create-hmac/browser.js +62 -0
- package/node_modules/create-hmac/index.js +1 -0
- package/node_modules/create-hmac/legacy.js +46 -0
- package/node_modules/create-hmac/package.json +49 -0
- package/node_modules/cross-spawn/LICENSE +21 -0
- package/node_modules/cross-spawn/README.md +94 -0
- package/node_modules/cross-spawn/index.js +39 -0
- package/node_modules/cross-spawn/lib/enoent.js +59 -0
- package/node_modules/cross-spawn/lib/parse.js +125 -0
- package/node_modules/cross-spawn/lib/util/escape.js +45 -0
- package/node_modules/cross-spawn/lib/util/readShebang.js +32 -0
- package/node_modules/cross-spawn/lib/util/resolveCommand.js +47 -0
- package/node_modules/cross-spawn/package.json +80 -0
- package/node_modules/decamelize/index.js +13 -0
- package/node_modules/decamelize/license +21 -0
- package/node_modules/decamelize/package.json +42 -0
- package/node_modules/decamelize/readme.md +48 -0
- package/node_modules/elliptic/README.md +238 -0
- package/node_modules/elliptic/lib/elliptic/curve/base.js +376 -0
- package/node_modules/elliptic/lib/elliptic/curve/edwards.js +432 -0
- package/node_modules/elliptic/lib/elliptic/curve/index.js +8 -0
- package/node_modules/elliptic/lib/elliptic/curve/mont.js +178 -0
- package/node_modules/elliptic/lib/elliptic/curve/short.js +937 -0
- package/node_modules/elliptic/lib/elliptic/curves.js +206 -0
- package/node_modules/elliptic/lib/elliptic/ec/index.js +241 -0
- package/node_modules/elliptic/lib/elliptic/ec/key.js +118 -0
- package/node_modules/elliptic/lib/elliptic/ec/signature.js +166 -0
- package/node_modules/elliptic/lib/elliptic/eddsa/index.js +118 -0
- package/node_modules/elliptic/lib/elliptic/eddsa/key.js +95 -0
- package/node_modules/elliptic/lib/elliptic/eddsa/signature.js +65 -0
- package/node_modules/elliptic/lib/elliptic/precomputed/secp256k1.js +780 -0
- package/node_modules/elliptic/lib/elliptic/utils.js +119 -0
- package/node_modules/elliptic/lib/elliptic.js +13 -0
- package/node_modules/elliptic/package.json +62 -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 +5 -0
- package/node_modules/emoji-regex/index.js +6 -0
- package/node_modules/emoji-regex/package.json +55 -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 +41 -0
- package/node_modules/ethereum-cryptography/LICENSE +26 -0
- package/node_modules/ethereum-cryptography/README.md +560 -0
- package/node_modules/ethereum-cryptography/aes.d.ts +4 -0
- package/node_modules/ethereum-cryptography/aes.d.ts.map +1 -0
- package/node_modules/ethereum-cryptography/aes.js +38 -0
- package/node_modules/ethereum-cryptography/aes.js.map +1 -0
- package/node_modules/ethereum-cryptography/bip39/index.d.ts +8 -0
- package/node_modules/ethereum-cryptography/bip39/index.d.ts.map +1 -0
- package/node_modules/ethereum-cryptography/bip39/index.js +71 -0
- package/node_modules/ethereum-cryptography/bip39/index.js.map +1 -0
- package/node_modules/ethereum-cryptography/bip39/wordlists/czech.d.ts +2 -0
- package/node_modules/ethereum-cryptography/bip39/wordlists/czech.d.ts.map +1 -0
- package/node_modules/ethereum-cryptography/bip39/wordlists/czech.js +2053 -0
- package/node_modules/ethereum-cryptography/bip39/wordlists/czech.js.map +1 -0
- package/node_modules/ethereum-cryptography/bip39/wordlists/english.d.ts +2 -0
- package/node_modules/ethereum-cryptography/bip39/wordlists/english.d.ts.map +1 -0
- package/node_modules/ethereum-cryptography/bip39/wordlists/english.js +2053 -0
- package/node_modules/ethereum-cryptography/bip39/wordlists/english.js.map +1 -0
- package/node_modules/ethereum-cryptography/bip39/wordlists/french.d.ts +2 -0
- package/node_modules/ethereum-cryptography/bip39/wordlists/french.d.ts.map +1 -0
- package/node_modules/ethereum-cryptography/bip39/wordlists/french.js +2053 -0
- package/node_modules/ethereum-cryptography/bip39/wordlists/french.js.map +1 -0
- package/node_modules/ethereum-cryptography/bip39/wordlists/italian.d.ts +2 -0
- package/node_modules/ethereum-cryptography/bip39/wordlists/italian.d.ts.map +1 -0
- package/node_modules/ethereum-cryptography/bip39/wordlists/italian.js +2053 -0
- package/node_modules/ethereum-cryptography/bip39/wordlists/italian.js.map +1 -0
- package/node_modules/ethereum-cryptography/bip39/wordlists/japanese.d.ts +2 -0
- package/node_modules/ethereum-cryptography/bip39/wordlists/japanese.d.ts.map +1 -0
- package/node_modules/ethereum-cryptography/bip39/wordlists/japanese.js +2053 -0
- package/node_modules/ethereum-cryptography/bip39/wordlists/japanese.js.map +1 -0
- package/node_modules/ethereum-cryptography/bip39/wordlists/korean.d.ts +2 -0
- package/node_modules/ethereum-cryptography/bip39/wordlists/korean.d.ts.map +1 -0
- package/node_modules/ethereum-cryptography/bip39/wordlists/korean.js +2053 -0
- package/node_modules/ethereum-cryptography/bip39/wordlists/korean.js.map +1 -0
- package/node_modules/ethereum-cryptography/bip39/wordlists/simplified-chinese.d.ts +2 -0
- package/node_modules/ethereum-cryptography/bip39/wordlists/simplified-chinese.d.ts.map +1 -0
- package/node_modules/ethereum-cryptography/bip39/wordlists/simplified-chinese.js +2053 -0
- package/node_modules/ethereum-cryptography/bip39/wordlists/simplified-chinese.js.map +1 -0
- package/node_modules/ethereum-cryptography/bip39/wordlists/spanish.d.ts +2 -0
- package/node_modules/ethereum-cryptography/bip39/wordlists/spanish.d.ts.map +1 -0
- package/node_modules/ethereum-cryptography/bip39/wordlists/spanish.js +2053 -0
- package/node_modules/ethereum-cryptography/bip39/wordlists/spanish.js.map +1 -0
- package/node_modules/ethereum-cryptography/bip39/wordlists/traditional-chinese.d.ts +2 -0
- package/node_modules/ethereum-cryptography/bip39/wordlists/traditional-chinese.d.ts.map +1 -0
- package/node_modules/ethereum-cryptography/bip39/wordlists/traditional-chinese.js +2053 -0
- package/node_modules/ethereum-cryptography/bip39/wordlists/traditional-chinese.js.map +1 -0
- package/node_modules/ethereum-cryptography/blake2b.d.ts +3 -0
- package/node_modules/ethereum-cryptography/blake2b.d.ts.map +1 -0
- package/node_modules/ethereum-cryptography/blake2b.js +12 -0
- package/node_modules/ethereum-cryptography/blake2b.js.map +1 -0
- package/node_modules/ethereum-cryptography/hash-utils.d.ts +4 -0
- package/node_modules/ethereum-cryptography/hash-utils.d.ts.map +1 -0
- package/node_modules/ethereum-cryptography/hash-utils.js +11 -0
- package/node_modules/ethereum-cryptography/hash-utils.js.map +1 -0
- package/node_modules/ethereum-cryptography/hdkey.d.ts +3 -0
- package/node_modules/ethereum-cryptography/hdkey.d.ts.map +1 -0
- package/node_modules/ethereum-cryptography/hdkey.js +5 -0
- package/node_modules/ethereum-cryptography/hdkey.js.map +1 -0
- package/node_modules/ethereum-cryptography/index.d.ts +1 -0
- package/node_modules/ethereum-cryptography/index.d.ts.map +1 -0
- package/node_modules/ethereum-cryptography/index.js +3 -0
- package/node_modules/ethereum-cryptography/index.js.map +1 -0
- package/node_modules/ethereum-cryptography/keccak.d.ts +6 -0
- package/node_modules/ethereum-cryptography/keccak.d.ts.map +1 -0
- package/node_modules/ethereum-cryptography/keccak.js +17 -0
- package/node_modules/ethereum-cryptography/keccak.js.map +1 -0
- package/node_modules/ethereum-cryptography/package.json +131 -0
- package/node_modules/ethereum-cryptography/pbkdf2.d.ts +4 -0
- package/node_modules/ethereum-cryptography/pbkdf2.d.ts.map +1 -0
- package/node_modules/ethereum-cryptography/pbkdf2.js +27 -0
- package/node_modules/ethereum-cryptography/pbkdf2.js.map +1 -0
- package/node_modules/ethereum-cryptography/pure/hdkey.d.ts +37 -0
- package/node_modules/ethereum-cryptography/pure/hdkey.d.ts.map +1 -0
- package/node_modules/ethereum-cryptography/pure/hdkey.js +5 -0
- package/node_modules/ethereum-cryptography/pure/hdkey.js.map +1 -0
- package/node_modules/ethereum-cryptography/pure/ripemd160.d.ts +3 -0
- package/node_modules/ethereum-cryptography/pure/ripemd160.d.ts.map +1 -0
- package/node_modules/ethereum-cryptography/pure/ripemd160.js +6 -0
- package/node_modules/ethereum-cryptography/pure/ripemd160.js.map +1 -0
- package/node_modules/ethereum-cryptography/pure/sha256.d.ts +3 -0
- package/node_modules/ethereum-cryptography/pure/sha256.d.ts.map +1 -0
- package/node_modules/ethereum-cryptography/pure/sha256.js +6 -0
- package/node_modules/ethereum-cryptography/pure/sha256.js.map +1 -0
- package/node_modules/ethereum-cryptography/pure/shims/hdkey-crypto.d.ts +13 -0
- package/node_modules/ethereum-cryptography/pure/shims/hdkey-crypto.d.ts.map +1 -0
- package/node_modules/ethereum-cryptography/pure/shims/hdkey-crypto.js +37 -0
- package/node_modules/ethereum-cryptography/pure/shims/hdkey-crypto.js.map +1 -0
- package/node_modules/ethereum-cryptography/pure/shims/hdkey-secp256k1v3.d.ts +2 -0
- package/node_modules/ethereum-cryptography/pure/shims/hdkey-secp256k1v3.d.ts.map +1 -0
- package/node_modules/ethereum-cryptography/pure/shims/hdkey-secp256k1v3.js +7 -0
- package/node_modules/ethereum-cryptography/pure/shims/hdkey-secp256k1v3.js.map +1 -0
- package/node_modules/ethereum-cryptography/pure/vendor/hdkey-without-crypto.js +255 -0
- package/node_modules/ethereum-cryptography/random.d.ts +4 -0
- package/node_modules/ethereum-cryptography/random.d.ts.map +1 -0
- package/node_modules/ethereum-cryptography/random.js +20 -0
- package/node_modules/ethereum-cryptography/random.js.map +1 -0
- package/node_modules/ethereum-cryptography/ripemd160.d.ts +3 -0
- package/node_modules/ethereum-cryptography/ripemd160.d.ts.map +1 -0
- package/node_modules/ethereum-cryptography/ripemd160.js +11 -0
- package/node_modules/ethereum-cryptography/ripemd160.js.map +1 -0
- package/node_modules/ethereum-cryptography/scrypt.d.ts +5 -0
- package/node_modules/ethereum-cryptography/scrypt.d.ts.map +1 -0
- package/node_modules/ethereum-cryptography/scrypt.js +59 -0
- package/node_modules/ethereum-cryptography/scrypt.js.map +1 -0
- package/node_modules/ethereum-cryptography/secp256k1.d.ts +4 -0
- package/node_modules/ethereum-cryptography/secp256k1.d.ts.map +1 -0
- package/node_modules/ethereum-cryptography/secp256k1.js +75 -0
- package/node_modules/ethereum-cryptography/secp256k1.js.map +1 -0
- package/node_modules/ethereum-cryptography/sha256.d.ts +3 -0
- package/node_modules/ethereum-cryptography/sha256.d.ts.map +1 -0
- package/node_modules/ethereum-cryptography/sha256.js +9 -0
- package/node_modules/ethereum-cryptography/sha256.js.map +1 -0
- package/node_modules/ethereum-cryptography/shims/hdkey-crypto.d.ts +2 -0
- package/node_modules/ethereum-cryptography/shims/hdkey-crypto.d.ts.map +1 -0
- package/node_modules/ethereum-cryptography/shims/hdkey-crypto.js +7 -0
- package/node_modules/ethereum-cryptography/shims/hdkey-crypto.js.map +1 -0
- package/node_modules/ethereum-cryptography/shims/hdkey-secp256k1v3.d.ts +13 -0
- package/node_modules/ethereum-cryptography/shims/hdkey-secp256k1v3.d.ts.map +1 -0
- package/node_modules/ethereum-cryptography/shims/hdkey-secp256k1v3.js +47 -0
- package/node_modules/ethereum-cryptography/shims/hdkey-secp256k1v3.js.map +1 -0
- package/node_modules/ethereum-cryptography/src/aes.ts +52 -0
- package/node_modules/ethereum-cryptography/src/bip39/index.ts +40 -0
- package/node_modules/ethereum-cryptography/src/bip39/wordlists/czech.ts +2050 -0
- package/node_modules/ethereum-cryptography/src/bip39/wordlists/english.ts +2050 -0
- package/node_modules/ethereum-cryptography/src/bip39/wordlists/french.ts +2050 -0
- package/node_modules/ethereum-cryptography/src/bip39/wordlists/italian.ts +2050 -0
- package/node_modules/ethereum-cryptography/src/bip39/wordlists/japanese.ts +2050 -0
- package/node_modules/ethereum-cryptography/src/bip39/wordlists/korean.ts +2050 -0
- package/node_modules/ethereum-cryptography/src/bip39/wordlists/simplified-chinese.ts +2050 -0
- package/node_modules/ethereum-cryptography/src/bip39/wordlists/spanish.ts +2050 -0
- package/node_modules/ethereum-cryptography/src/bip39/wordlists/traditional-chinese.ts +2050 -0
- package/node_modules/ethereum-cryptography/src/blake2b.ts +9 -0
- package/node_modules/ethereum-cryptography/src/hash-utils.ts +11 -0
- package/node_modules/ethereum-cryptography/src/hdkey.ts +5 -0
- package/node_modules/ethereum-cryptography/src/index.ts +3 -0
- package/node_modules/ethereum-cryptography/src/keccak.ts +19 -0
- package/node_modules/ethereum-cryptography/src/pbkdf2.ts +37 -0
- package/node_modules/ethereum-cryptography/src/pure/hdkey.ts +36 -0
- package/node_modules/ethereum-cryptography/src/pure/ripemd160.ts +5 -0
- package/node_modules/ethereum-cryptography/src/pure/sha256.ts +5 -0
- package/node_modules/ethereum-cryptography/src/pure/shims/hdkey-crypto.ts +42 -0
- package/node_modules/ethereum-cryptography/src/pure/shims/hdkey-secp256k1v3.ts +1 -0
- package/node_modules/ethereum-cryptography/src/pure/vendor/hdkey-without-crypto.js +255 -0
- package/node_modules/ethereum-cryptography/src/random.ts +18 -0
- package/node_modules/ethereum-cryptography/src/ripemd160.ts +7 -0
- package/node_modules/ethereum-cryptography/src/scrypt.ts +24 -0
- package/node_modules/ethereum-cryptography/src/secp256k1.ts +24 -0
- package/node_modules/ethereum-cryptography/src/sha256.ts +5 -0
- package/node_modules/ethereum-cryptography/src/shims/hdkey-crypto.ts +1 -0
- package/node_modules/ethereum-cryptography/src/shims/hdkey-secp256k1v3.ts +49 -0
- package/node_modules/ethereum-cryptography/src/vendor/bip39-without-wordlists.js +206 -0
- package/node_modules/ethereum-cryptography/src/vendor/hdkey-without-crypto.js +255 -0
- package/node_modules/ethereum-cryptography/vendor/bip39-without-wordlists.js +206 -0
- package/node_modules/ethereum-cryptography/vendor/hdkey-without-crypto.js +255 -0
- package/node_modules/ethereumjs-util/LICENSE +373 -0
- package/node_modules/ethereumjs-util/README.md +32 -0
- package/node_modules/ethereumjs-util/dist/account.d.ts +80 -0
- package/node_modules/ethereumjs-util/dist/account.js +168 -0
- package/node_modules/ethereumjs-util/dist/account.js.map +1 -0
- package/node_modules/ethereumjs-util/dist/bytes.d.ts +68 -0
- package/node_modules/ethereumjs-util/dist/bytes.js +158 -0
- package/node_modules/ethereumjs-util/dist/bytes.js.map +1 -0
- package/node_modules/ethereumjs-util/dist/constants.d.ts +34 -0
- package/node_modules/ethereumjs-util/dist/constants.js +37 -0
- package/node_modules/ethereumjs-util/dist/constants.js.map +1 -0
- package/node_modules/ethereumjs-util/dist/hash.d.ts +30 -0
- package/node_modules/ethereumjs-util/dist/hash.js +84 -0
- package/node_modules/ethereumjs-util/dist/hash.js.map +1 -0
- package/node_modules/ethereumjs-util/dist/index.d.ts +39 -0
- package/node_modules/ethereumjs-util/dist/index.js +46 -0
- package/node_modules/ethereumjs-util/dist/index.js.map +1 -0
- package/node_modules/ethereumjs-util/dist/object.d.ts +12 -0
- package/node_modules/ethereumjs-util/dist/object.js +106 -0
- package/node_modules/ethereumjs-util/dist/object.js.map +1 -0
- package/node_modules/ethereumjs-util/dist/secp256k1v3-adapter.d.ts +178 -0
- package/node_modules/ethereumjs-util/dist/secp256k1v3-adapter.js +300 -0
- package/node_modules/ethereumjs-util/dist/secp256k1v3-adapter.js.map +1 -0
- package/node_modules/ethereumjs-util/dist/secp256k1v3-lib/der.d.ts +1 -0
- package/node_modules/ethereumjs-util/dist/secp256k1v3-lib/der.js +634 -0
- package/node_modules/ethereumjs-util/dist/secp256k1v3-lib/der.js.map +1 -0
- package/node_modules/ethereumjs-util/dist/secp256k1v3-lib/index.d.ts +5 -0
- package/node_modules/ethereumjs-util/dist/secp256k1v3-lib/index.js +61 -0
- package/node_modules/ethereumjs-util/dist/secp256k1v3-lib/index.js.map +1 -0
- package/node_modules/ethereumjs-util/dist/signature.d.ts +37 -0
- package/node_modules/ethereumjs-util/dist/signature.js +107 -0
- package/node_modules/ethereumjs-util/dist/signature.js.map +1 -0
- package/node_modules/ethereumjs-util/package.json +131 -0
- package/node_modules/ethjs-util/LICENSE +21 -0
- package/node_modules/ethjs-util/README.md +143 -0
- package/node_modules/ethjs-util/dist/ethjs-util.js +2420 -0
- package/node_modules/ethjs-util/dist/ethjs-util.js.map +1 -0
- package/node_modules/ethjs-util/dist/ethjs-util.min.js +1 -0
- package/node_modules/ethjs-util/internals/webpack/webpack.config.js +58 -0
- package/node_modules/ethjs-util/lib/index.js +220 -0
- package/node_modules/ethjs-util/lib/tests/test.index.js +357 -0
- package/node_modules/ethjs-util/package.json +229 -0
- package/node_modules/ethjs-util/src/index.js +203 -0
- package/node_modules/ethjs-util/src/tests/test.index.js +382 -0
- package/node_modules/evp_bytestokey/LICENSE +21 -0
- package/node_modules/evp_bytestokey/README.md +51 -0
- package/node_modules/evp_bytestokey/index.js +45 -0
- package/node_modules/evp_bytestokey/package.json +49 -0
- package/node_modules/execa/index.js +361 -0
- package/node_modules/execa/lib/errname.js +39 -0
- package/node_modules/execa/lib/stdio.js +41 -0
- package/node_modules/execa/license +9 -0
- package/node_modules/execa/package.json +73 -0
- package/node_modules/execa/readme.md +327 -0
- package/node_modules/find-up/index.js +46 -0
- package/node_modules/find-up/license +9 -0
- package/node_modules/find-up/package.json +54 -0
- package/node_modules/find-up/readme.md +87 -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 +46 -0
- package/node_modules/get-stream/buffer-stream.js +51 -0
- package/node_modules/get-stream/index.js +50 -0
- package/node_modules/get-stream/license +9 -0
- package/node_modules/get-stream/package.json +50 -0
- package/node_modules/get-stream/readme.md +123 -0
- package/node_modules/hash-base/LICENSE +21 -0
- package/node_modules/hash-base/README.md +48 -0
- package/node_modules/hash-base/index.js +95 -0
- package/node_modules/hash-base/package.json +46 -0
- package/node_modules/hash.js/.eslintrc.js +41 -0
- package/node_modules/hash.js/.travis.yml +10 -0
- package/node_modules/hash.js/README.md +48 -0
- package/node_modules/hash.js/lib/hash/common.js +92 -0
- package/node_modules/hash.js/lib/hash/hmac.js +47 -0
- package/node_modules/hash.js/lib/hash/ripemd.js +146 -0
- package/node_modules/hash.js/lib/hash/sha/1.js +74 -0
- package/node_modules/hash.js/lib/hash/sha/224.js +30 -0
- package/node_modules/hash.js/lib/hash/sha/256.js +105 -0
- package/node_modules/hash.js/lib/hash/sha/384.js +35 -0
- package/node_modules/hash.js/lib/hash/sha/512.js +330 -0
- package/node_modules/hash.js/lib/hash/sha/common.js +49 -0
- package/node_modules/hash.js/lib/hash/sha.js +7 -0
- package/node_modules/hash.js/lib/hash/utils.js +278 -0
- package/node_modules/hash.js/lib/hash.d.ts +106 -0
- package/node_modules/hash.js/lib/hash.js +15 -0
- package/node_modules/hash.js/package.json +39 -0
- package/node_modules/hash.js/test/hash-test.js +140 -0
- package/node_modules/hash.js/test/hmac-test.js +62 -0
- package/node_modules/hmac-drbg/.npmignore +2 -0
- package/node_modules/hmac-drbg/.travis.yml +11 -0
- package/node_modules/hmac-drbg/README.md +48 -0
- package/node_modules/hmac-drbg/lib/hmac-drbg.js +113 -0
- package/node_modules/hmac-drbg/package.json +36 -0
- package/node_modules/hmac-drbg/test/drbg-test.js +91 -0
- package/node_modules/hmac-drbg/test/fixtures/hmac-drbg-nist.json +332 -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 +33 -0
- package/node_modules/invert-kv/index.js +15 -0
- package/node_modules/invert-kv/license +9 -0
- package/node_modules/invert-kv/package.json +36 -0
- package/node_modules/invert-kv/readme.md +25 -0
- package/node_modules/is-fullwidth-code-point/index.js +46 -0
- package/node_modules/is-fullwidth-code-point/license +21 -0
- package/node_modules/is-fullwidth-code-point/package.json +49 -0
- package/node_modules/is-fullwidth-code-point/readme.md +39 -0
- package/node_modules/is-hex-prefixed/.editorconfig +7 -0
- package/node_modules/is-hex-prefixed/.gitattributes +106 -0
- package/node_modules/is-hex-prefixed/.npmignore +8 -0
- package/node_modules/is-hex-prefixed/.travis.yml +5 -0
- package/node_modules/is-hex-prefixed/CHANGELOG.md +7 -0
- package/node_modules/is-hex-prefixed/LICENSE +21 -0
- package/node_modules/is-hex-prefixed/README.md +101 -0
- package/node_modules/is-hex-prefixed/package.json +43 -0
- package/node_modules/is-hex-prefixed/src/index.js +13 -0
- package/node_modules/is-hex-prefixed/src/tests/test.index.js +66 -0
- package/node_modules/is-stream/index.js +21 -0
- package/node_modules/is-stream/license +21 -0
- package/node_modules/is-stream/package.json +42 -0
- package/node_modules/is-stream/readme.md +42 -0
- package/node_modules/isexe/.npmignore +2 -0
- package/node_modules/isexe/LICENSE +15 -0
- package/node_modules/isexe/README.md +51 -0
- package/node_modules/isexe/index.js +57 -0
- package/node_modules/isexe/mode.js +41 -0
- package/node_modules/isexe/package.json +35 -0
- package/node_modules/isexe/test/basic.js +221 -0
- package/node_modules/isexe/windows.js +42 -0
- package/node_modules/keccak/LICENSE +21 -0
- package/node_modules/keccak/README.md +64 -0
- package/node_modules/keccak/binding.gyp +78 -0
- package/node_modules/keccak/bindings.js +1 -0
- package/node_modules/keccak/index.js +5 -0
- package/node_modules/keccak/js.js +1 -0
- package/node_modules/keccak/lib/api/index.js +27 -0
- package/node_modules/keccak/lib/api/keccak.js +77 -0
- package/node_modules/keccak/lib/api/shake.js +68 -0
- package/node_modules/keccak/lib/keccak-state-reference.js +143 -0
- package/node_modules/keccak/lib/keccak-state-unroll.js +186 -0
- package/node_modules/keccak/lib/keccak.js +68 -0
- package/node_modules/keccak/package.json +41 -0
- package/node_modules/keccak/prebuilds/darwin-x64/node.napi.node +0 -0
- package/node_modules/keccak/prebuilds/linux-x64/node.napi.glibc.node +0 -0
- package/node_modules/keccak/prebuilds/linux-x64/node.napi.musl.node +0 -0
- package/node_modules/keccak/prebuilds/win32-x64/node.napi.node +0 -0
- package/node_modules/keccak/src/README.md +28 -0
- package/node_modules/keccak/src/addon.cc +98 -0
- package/node_modules/keccak/src/libkeccak-32/KeccakP-1600-SnP.h +38 -0
- package/node_modules/keccak/src/libkeccak-32/KeccakP-1600-inplace32BI.c +1162 -0
- package/node_modules/keccak/src/libkeccak-32/KeccakSponge-common.h +35 -0
- package/node_modules/keccak/src/libkeccak-32/KeccakSponge.inc +311 -0
- package/node_modules/keccak/src/libkeccak-32/KeccakSpongeWidth1600.c +54 -0
- package/node_modules/keccak/src/libkeccak-32/KeccakSpongeWidth1600.h +31 -0
- package/node_modules/keccak/src/libkeccak-32/SnP-Relaned.h +140 -0
- package/node_modules/keccak/src/libkeccak-32/align.h +32 -0
- package/node_modules/keccak/src/libkeccak-32/brg_endian.h +143 -0
- package/node_modules/keccak/src/libkeccak-64/KeccakP-1600-64.macros +745 -0
- package/node_modules/keccak/src/libkeccak-64/KeccakP-1600-SnP.h +51 -0
- package/node_modules/keccak/src/libkeccak-64/KeccakP-1600-opt64-config.h +6 -0
- package/node_modules/keccak/src/libkeccak-64/KeccakP-1600-opt64.c +564 -0
- package/node_modules/keccak/src/libkeccak-64/KeccakP-1600-unrolling.macros +302 -0
- package/node_modules/keccak/src/libkeccak-64/KeccakSponge-common.h +35 -0
- package/node_modules/keccak/src/libkeccak-64/KeccakSponge.inc +311 -0
- package/node_modules/keccak/src/libkeccak-64/KeccakSpongeWidth1600.c +54 -0
- package/node_modules/keccak/src/libkeccak-64/KeccakSpongeWidth1600.h +31 -0
- package/node_modules/keccak/src/libkeccak-64/SnP-Relaned.h +140 -0
- package/node_modules/keccak/src/libkeccak-64/align.h +32 -0
- package/node_modules/keccak/src/libkeccak-64/brg_endian.h +143 -0
- package/node_modules/lcid/index.js +23 -0
- package/node_modules/lcid/lcid.json +203 -0
- package/node_modules/lcid/license +9 -0
- package/node_modules/lcid/package.json +51 -0
- package/node_modules/lcid/readme.md +35 -0
- package/node_modules/locate-path/index.js +24 -0
- package/node_modules/locate-path/license +9 -0
- package/node_modules/locate-path/package.json +48 -0
- package/node_modules/locate-path/readme.md +99 -0
- package/node_modules/map-age-cleaner/dist/index.d.ts +20 -0
- package/node_modules/map-age-cleaner/dist/index.js +92 -0
- package/node_modules/map-age-cleaner/license +9 -0
- package/node_modules/map-age-cleaner/package.json +63 -0
- package/node_modules/map-age-cleaner/readme.md +67 -0
- package/node_modules/md5.js/LICENSE +21 -0
- package/node_modules/md5.js/README.md +29 -0
- package/node_modules/md5.js/index.js +146 -0
- package/node_modules/md5.js/package.json +42 -0
- package/node_modules/mem/index.d.ts +96 -0
- package/node_modules/mem/index.js +88 -0
- package/node_modules/mem/license +9 -0
- package/node_modules/mem/package.json +50 -0
- package/node_modules/mem/readme.md +167 -0
- package/node_modules/mimic-fn/index.d.ts +54 -0
- package/node_modules/mimic-fn/index.js +13 -0
- package/node_modules/mimic-fn/license +9 -0
- package/node_modules/mimic-fn/package.json +46 -0
- package/node_modules/mimic-fn/readme.md +69 -0
- package/node_modules/minimalistic-assert/LICENSE +13 -0
- package/node_modules/minimalistic-assert/index.js +11 -0
- package/node_modules/minimalistic-assert/package.json +23 -0
- package/node_modules/minimalistic-assert/readme.md +4 -0
- package/node_modules/minimalistic-crypto-utils/.npmignore +2 -0
- package/node_modules/minimalistic-crypto-utils/.travis.yml +11 -0
- package/node_modules/minimalistic-crypto-utils/README.md +47 -0
- package/node_modules/minimalistic-crypto-utils/lib/utils.js +58 -0
- package/node_modules/minimalistic-crypto-utils/package.json +31 -0
- package/node_modules/minimalistic-crypto-utils/test/utils-test.js +28 -0
- package/node_modules/nice-try/LICENSE +21 -0
- package/node_modules/nice-try/README.md +32 -0
- package/node_modules/nice-try/package.json +37 -0
- package/node_modules/nice-try/src/index.js +12 -0
- package/node_modules/node-addon-api/.editorconfig +8 -0
- package/node_modules/node-addon-api/.travis.yml +62 -0
- package/node_modules/node-addon-api/CHANGELOG.md +412 -0
- package/node_modules/node-addon-api/CODE_OF_CONDUCT.md +4 -0
- package/node_modules/node-addon-api/CONTRIBUTING.md +66 -0
- package/node_modules/node-addon-api/LICENSE.md +13 -0
- package/node_modules/node-addon-api/README.md +203 -0
- package/node_modules/node-addon-api/appveyor.yml +48 -0
- package/node_modules/node-addon-api/doc/Doxyfile +2450 -0
- package/node_modules/node-addon-api/doc/array_buffer.md +129 -0
- package/node_modules/node-addon-api/doc/async_context.md +86 -0
- package/node_modules/node-addon-api/doc/async_operations.md +31 -0
- package/node_modules/node-addon-api/doc/async_progress_worker.md +344 -0
- package/node_modules/node-addon-api/doc/async_worker.md +398 -0
- package/node_modules/node-addon-api/doc/basic_types.md +423 -0
- package/node_modules/node-addon-api/doc/bigint.md +92 -0
- package/node_modules/node-addon-api/doc/boolean.md +64 -0
- package/node_modules/node-addon-api/doc/buffer.md +140 -0
- package/node_modules/node-addon-api/doc/callback_scope.md +54 -0
- package/node_modules/node-addon-api/doc/callbackinfo.md +97 -0
- package/node_modules/node-addon-api/doc/checker-tool.md +32 -0
- package/node_modules/node-addon-api/doc/class_property_descriptor.md +117 -0
- package/node_modules/node-addon-api/doc/cmake-js.md +68 -0
- package/node_modules/node-addon-api/doc/conversion-tool.md +28 -0
- package/node_modules/node-addon-api/doc/creating_a_release.md +62 -0
- package/node_modules/node-addon-api/doc/dataview.md +244 -0
- package/node_modules/node-addon-api/doc/date.md +68 -0
- package/node_modules/node-addon-api/doc/env.md +63 -0
- package/node_modules/node-addon-api/doc/error.md +115 -0
- package/node_modules/node-addon-api/doc/error_handling.md +186 -0
- package/node_modules/node-addon-api/doc/escapable_handle_scope.md +82 -0
- package/node_modules/node-addon-api/doc/external.md +59 -0
- package/node_modules/node-addon-api/doc/function.md +294 -0
- package/node_modules/node-addon-api/doc/function_reference.md +238 -0
- package/node_modules/node-addon-api/doc/generator.md +13 -0
- package/node_modules/node-addon-api/doc/handle_scope.md +65 -0
- package/node_modules/node-addon-api/doc/memory_management.md +27 -0
- package/node_modules/node-addon-api/doc/node-gyp.md +82 -0
- package/node_modules/node-addon-api/doc/number.md +163 -0
- package/node_modules/node-addon-api/doc/object.md +236 -0
- package/node_modules/node-addon-api/doc/object_lifetime_management.md +83 -0
- package/node_modules/node-addon-api/doc/object_reference.md +117 -0
- package/node_modules/node-addon-api/doc/object_wrap.md +557 -0
- package/node_modules/node-addon-api/doc/prebuild_tools.md +16 -0
- package/node_modules/node-addon-api/doc/promises.md +74 -0
- package/node_modules/node-addon-api/doc/property_descriptor.md +231 -0
- package/node_modules/node-addon-api/doc/range_error.md +59 -0
- package/node_modules/node-addon-api/doc/reference.md +111 -0
- package/node_modules/node-addon-api/doc/setup.md +82 -0
- package/node_modules/node-addon-api/doc/string.md +89 -0
- package/node_modules/node-addon-api/doc/symbol.md +44 -0
- package/node_modules/node-addon-api/doc/threadsafe_function.md +320 -0
- package/node_modules/node-addon-api/doc/type_error.md +59 -0
- package/node_modules/node-addon-api/doc/typed_array.md +74 -0
- package/node_modules/node-addon-api/doc/typed_array_of.md +133 -0
- package/node_modules/node-addon-api/doc/value.md +278 -0
- package/node_modules/node-addon-api/doc/version_management.md +43 -0
- package/node_modules/node-addon-api/doc/working_with_javascript_values.md +14 -0
- package/node_modules/node-addon-api/external-napi/node_api.h +7 -0
- package/node_modules/node-addon-api/index.js +45 -0
- package/node_modules/node-addon-api/napi-inl.deprecated.h +192 -0
- package/node_modules/node-addon-api/napi-inl.h +4412 -0
- package/node_modules/node-addon-api/napi.h +2173 -0
- package/node_modules/node-addon-api/package.json +248 -0
- package/node_modules/node-addon-api/src/node_api.cc +3655 -0
- package/node_modules/node-addon-api/src/node_api.gyp +21 -0
- package/node_modules/node-addon-api/src/node_api.h +588 -0
- package/node_modules/node-addon-api/src/node_api_types.h +115 -0
- package/node_modules/node-addon-api/src/node_internals.cc +142 -0
- package/node_modules/node-addon-api/src/node_internals.h +157 -0
- package/node_modules/node-addon-api/src/nothing.c +0 -0
- package/node_modules/node-addon-api/src/util-inl.h +38 -0
- package/node_modules/node-addon-api/src/util.h +7 -0
- package/node_modules/node-addon-api/tools/README.md +67 -0
- package/node_modules/node-addon-api/tools/check-napi.js +100 -0
- package/node_modules/node-addon-api/tools/conversion.js +313 -0
- package/node_modules/node-gyp-build/LICENSE +21 -0
- package/node_modules/node-gyp-build/README.md +58 -0
- package/node_modules/node-gyp-build/bin.js +77 -0
- package/node_modules/node-gyp-build/build-test.js +19 -0
- package/node_modules/node-gyp-build/index.js +166 -0
- package/node_modules/node-gyp-build/optional.js +7 -0
- package/node_modules/node-gyp-build/package.json +33 -0
- package/node_modules/npm-run-path/index.js +39 -0
- package/node_modules/npm-run-path/license +21 -0
- package/node_modules/npm-run-path/package.json +49 -0
- package/node_modules/npm-run-path/readme.md +81 -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 +37 -0
- package/node_modules/os-locale/index.js +114 -0
- package/node_modules/os-locale/license +9 -0
- package/node_modules/os-locale/package.json +49 -0
- package/node_modules/os-locale/readme.md +71 -0
- package/node_modules/p-defer/index.js +11 -0
- package/node_modules/p-defer/license +21 -0
- package/node_modules/p-defer/package.json +45 -0
- package/node_modules/p-defer/readme.md +47 -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 +46 -0
- package/node_modules/p-finally/readme.md +47 -0
- package/node_modules/p-is-promise/index.d.ts +23 -0
- package/node_modules/p-is-promise/index.js +15 -0
- package/node_modules/p-is-promise/license +9 -0
- package/node_modules/p-is-promise/package.json +46 -0
- package/node_modules/p-is-promise/readme.md +43 -0
- package/node_modules/p-limit/index.d.ts +38 -0
- package/node_modules/p-limit/index.js +57 -0
- package/node_modules/p-limit/license +9 -0
- package/node_modules/p-limit/package.json +56 -0
- package/node_modules/p-limit/readme.md +101 -0
- package/node_modules/p-locate/index.js +34 -0
- package/node_modules/p-locate/license +9 -0
- package/node_modules/p-locate/package.json +55 -0
- package/node_modules/p-locate/readme.md +88 -0
- package/node_modules/p-try/index.d.ts +39 -0
- package/node_modules/p-try/index.js +9 -0
- package/node_modules/p-try/license +9 -0
- package/node_modules/p-try/package.json +46 -0
- package/node_modules/p-try/readme.md +58 -0
- package/node_modules/path-exists/index.js +17 -0
- package/node_modules/path-exists/license +21 -0
- package/node_modules/path-exists/package.json +44 -0
- package/node_modules/path-exists/readme.md +50 -0
- package/node_modules/path-key/index.js +13 -0
- package/node_modules/path-key/license +21 -0
- package/node_modules/path-key/package.json +43 -0
- package/node_modules/path-key/readme.md +51 -0
- package/node_modules/pbkdf2/LICENSE +21 -0
- package/node_modules/pbkdf2/README.md +30 -0
- package/node_modules/pbkdf2/browser.js +2 -0
- package/node_modules/pbkdf2/index.js +38 -0
- package/node_modules/pbkdf2/lib/async.js +102 -0
- package/node_modules/pbkdf2/lib/default-encoding.js +12 -0
- package/node_modules/pbkdf2/lib/precondition.js +19 -0
- package/node_modules/pbkdf2/lib/sync-browser.js +105 -0
- package/node_modules/pbkdf2/lib/sync.js +52 -0
- package/node_modules/pbkdf2/lib/to-buffer.js +13 -0
- package/node_modules/pbkdf2/package.json +74 -0
- package/node_modules/pump/.travis.yml +5 -0
- package/node_modules/pump/LICENSE +21 -0
- package/node_modules/pump/README.md +65 -0
- package/node_modules/pump/index.js +82 -0
- package/node_modules/pump/package.json +28 -0
- package/node_modules/pump/test-browser.js +66 -0
- package/node_modules/pump/test-node.js +53 -0
- package/node_modules/randombytes/.travis.yml +15 -0
- package/node_modules/randombytes/.zuul.yml +1 -0
- package/node_modules/randombytes/LICENSE +21 -0
- package/node_modules/randombytes/README.md +14 -0
- package/node_modules/randombytes/browser.js +50 -0
- package/node_modules/randombytes/index.js +1 -0
- package/node_modules/randombytes/package.json +40 -0
- package/node_modules/randombytes/test.js +81 -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 +106 -0
- package/node_modules/readable-stream/errors-browser.js +127 -0
- package/node_modules/readable-stream/errors.js +116 -0
- package/node_modules/readable-stream/experimentalWarning.js +17 -0
- package/node_modules/readable-stream/lib/_stream_duplex.js +139 -0
- package/node_modules/readable-stream/lib/_stream_passthrough.js +39 -0
- package/node_modules/readable-stream/lib/_stream_readable.js +1124 -0
- package/node_modules/readable-stream/lib/_stream_transform.js +201 -0
- package/node_modules/readable-stream/lib/_stream_writable.js +697 -0
- package/node_modules/readable-stream/lib/internal/streams/async_iterator.js +207 -0
- package/node_modules/readable-stream/lib/internal/streams/buffer_list.js +210 -0
- package/node_modules/readable-stream/lib/internal/streams/destroy.js +105 -0
- package/node_modules/readable-stream/lib/internal/streams/end-of-stream.js +104 -0
- package/node_modules/readable-stream/lib/internal/streams/from-browser.js +3 -0
- package/node_modules/readable-stream/lib/internal/streams/from.js +64 -0
- package/node_modules/readable-stream/lib/internal/streams/pipeline.js +97 -0
- package/node_modules/readable-stream/lib/internal/streams/state.js +27 -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 +72 -0
- package/node_modules/readable-stream/readable-browser.js +9 -0
- package/node_modules/readable-stream/readable.js +16 -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 +44 -0
- package/node_modules/require-main-filename/LICENSE.txt +14 -0
- package/node_modules/require-main-filename/README.md +26 -0
- package/node_modules/require-main-filename/index.js +18 -0
- package/node_modules/require-main-filename/package.json +39 -0
- package/node_modules/ripemd160/LICENSE +21 -0
- package/node_modules/ripemd160/README.md +27 -0
- package/node_modules/ripemd160/index.js +163 -0
- package/node_modules/ripemd160/package.json +41 -0
- package/node_modules/rlp/LICENSE +373 -0
- package/node_modules/rlp/README.md +58 -0
- package/node_modules/rlp/bin/rlp +35 -0
- package/node_modules/rlp/dist/index.d.ts +25 -0
- package/node_modules/rlp/dist/index.js +249 -0
- package/node_modules/rlp/dist/index.js.map +1 -0
- package/node_modules/rlp/dist/types.d.ts +9 -0
- package/node_modules/rlp/dist/types.js +3 -0
- package/node_modules/rlp/dist/types.js.map +1 -0
- package/node_modules/rlp/package.json +84 -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 +65 -0
- package/node_modules/safe-buffer/package.json +55 -0
- package/node_modules/scrypt-js/LICENSE.txt +22 -0
- package/node_modules/scrypt-js/README.md +222 -0
- package/node_modules/scrypt-js/index.html +291 -0
- package/node_modules/scrypt-js/package.json +31 -0
- package/node_modules/scrypt-js/scrypt.d.ts +23 -0
- package/node_modules/scrypt-js/scrypt.js +488 -0
- package/node_modules/scrypt-js/thirdparty/buffer.js +1381 -0
- package/node_modules/scrypt-js/thirdparty/setImmediate.js +175 -0
- package/node_modules/scrypt-js/thirdparty/unorm.js +442 -0
- package/node_modules/secp256k1/API.md +116 -0
- package/node_modules/secp256k1/LICENSE +24 -0
- package/node_modules/secp256k1/README.md +117 -0
- package/node_modules/secp256k1/binding.gyp +100 -0
- package/node_modules/secp256k1/bindings.js +2 -0
- package/node_modules/secp256k1/elliptic.js +1 -0
- package/node_modules/secp256k1/index.js +5 -0
- package/node_modules/secp256k1/lib/elliptic.js +402 -0
- package/node_modules/secp256k1/lib/index.js +336 -0
- package/node_modules/secp256k1/package.json +47 -0
- package/node_modules/secp256k1/prebuilds/darwin-x64/node.napi.node +0 -0
- package/node_modules/secp256k1/prebuilds/linux-x64/node.napi.glibc.node +0 -0
- package/node_modules/secp256k1/prebuilds/linux-x64/node.napi.musl.node +0 -0
- package/node_modules/secp256k1/prebuilds/win32-x64/node.napi.node +0 -0
- package/node_modules/secp256k1/src/addon.cc +10 -0
- package/node_modules/secp256k1/src/secp256k1/.travis.yml +100 -0
- package/node_modules/secp256k1/src/secp256k1/COPYING +19 -0
- package/node_modules/secp256k1/src/secp256k1/Makefile.am +183 -0
- package/node_modules/secp256k1/src/secp256k1/README.md +78 -0
- package/node_modules/secp256k1/src/secp256k1/SECURITY.md +15 -0
- package/node_modules/secp256k1/src/secp256k1/TODO +3 -0
- package/node_modules/secp256k1/src/secp256k1/autogen.sh +3 -0
- package/node_modules/secp256k1/src/secp256k1/build-aux/m4/ax_jni_include_dir.m4 +145 -0
- package/node_modules/secp256k1/src/secp256k1/build-aux/m4/ax_prog_cc_for_build.m4 +125 -0
- package/node_modules/secp256k1/src/secp256k1/build-aux/m4/bitcoin_secp.m4 +68 -0
- package/node_modules/secp256k1/src/secp256k1/configure.ac +591 -0
- package/node_modules/secp256k1/src/secp256k1/contrib/lax_der_parsing.c +150 -0
- package/node_modules/secp256k1/src/secp256k1/contrib/lax_der_parsing.h +91 -0
- package/node_modules/secp256k1/src/secp256k1/contrib/lax_der_privatekey_parsing.c +113 -0
- package/node_modules/secp256k1/src/secp256k1/contrib/lax_der_privatekey_parsing.h +90 -0
- package/node_modules/secp256k1/src/secp256k1/include/secp256k1.h +708 -0
- package/node_modules/secp256k1/src/secp256k1/include/secp256k1_ecdh.h +55 -0
- package/node_modules/secp256k1/src/secp256k1/include/secp256k1_preallocated.h +128 -0
- package/node_modules/secp256k1/src/secp256k1/include/secp256k1_recovery.h +110 -0
- package/node_modules/secp256k1/src/secp256k1/libsecp256k1.pc.in +13 -0
- package/node_modules/secp256k1/src/secp256k1/sage/group_prover.sage +322 -0
- package/node_modules/secp256k1/src/secp256k1/sage/secp256k1.sage +306 -0
- package/node_modules/secp256k1/src/secp256k1/sage/weierstrass_prover.sage +264 -0
- package/node_modules/secp256k1/src/secp256k1/src/asm/field_10x26_arm.s +913 -0
- package/node_modules/secp256k1/src/secp256k1/src/basic-config.h +38 -0
- package/node_modules/secp256k1/src/secp256k1/src/bench.h +124 -0
- package/node_modules/secp256k1/src/secp256k1/src/bench_ecdh.c +54 -0
- package/node_modules/secp256k1/src/secp256k1/src/bench_ecmult.c +207 -0
- package/node_modules/secp256k1/src/secp256k1/src/bench_internal.c +379 -0
- package/node_modules/secp256k1/src/secp256k1/src/bench_recover.c +60 -0
- package/node_modules/secp256k1/src/secp256k1/src/bench_sign.c +56 -0
- package/node_modules/secp256k1/src/secp256k1/src/bench_verify.c +112 -0
- package/node_modules/secp256k1/src/secp256k1/src/ecdsa.h +21 -0
- package/node_modules/secp256k1/src/secp256k1/src/ecdsa_impl.h +319 -0
- package/node_modules/secp256k1/src/secp256k1/src/eckey.h +25 -0
- package/node_modules/secp256k1/src/secp256k1/src/eckey_impl.h +100 -0
- package/node_modules/secp256k1/src/secp256k1/src/ecmult.h +48 -0
- package/node_modules/secp256k1/src/secp256k1/src/ecmult_const.h +20 -0
- package/node_modules/secp256k1/src/secp256k1/src/ecmult_const_impl.h +261 -0
- package/node_modules/secp256k1/src/secp256k1/src/ecmult_gen.h +50 -0
- package/node_modules/secp256k1/src/secp256k1/src/ecmult_gen_impl.h +211 -0
- package/node_modules/secp256k1/src/secp256k1/src/ecmult_impl.h +1216 -0
- package/node_modules/secp256k1/src/secp256k1/src/field.h +132 -0
- package/node_modules/secp256k1/src/secp256k1/src/field_10x26.h +50 -0
- package/node_modules/secp256k1/src/secp256k1/src/field_10x26_impl.h +1162 -0
- package/node_modules/secp256k1/src/secp256k1/src/field_5x52.h +49 -0
- package/node_modules/secp256k1/src/secp256k1/src/field_5x52_asm_impl.h +502 -0
- package/node_modules/secp256k1/src/secp256k1/src/field_5x52_impl.h +496 -0
- package/node_modules/secp256k1/src/secp256k1/src/field_5x52_int128_impl.h +279 -0
- package/node_modules/secp256k1/src/secp256k1/src/field_impl.h +318 -0
- package/node_modules/secp256k1/src/secp256k1/src/gen_context.c +87 -0
- package/node_modules/secp256k1/src/secp256k1/src/group.h +142 -0
- package/node_modules/secp256k1/src/secp256k1/src/group_impl.h +705 -0
- package/node_modules/secp256k1/src/secp256k1/src/hash.h +41 -0
- package/node_modules/secp256k1/src/secp256k1/src/hash_impl.h +283 -0
- package/node_modules/secp256k1/src/secp256k1/src/java/org/bitcoin/NativeSecp256k1.java +446 -0
- package/node_modules/secp256k1/src/secp256k1/src/java/org/bitcoin/NativeSecp256k1Test.java +225 -0
- package/node_modules/secp256k1/src/secp256k1/src/java/org/bitcoin/NativeSecp256k1Util.java +45 -0
- package/node_modules/secp256k1/src/secp256k1/src/java/org/bitcoin/Secp256k1Context.java +51 -0
- package/node_modules/secp256k1/src/secp256k1/src/java/org_bitcoin_NativeSecp256k1.c +379 -0
- package/node_modules/secp256k1/src/secp256k1/src/java/org_bitcoin_NativeSecp256k1.h +119 -0
- package/node_modules/secp256k1/src/secp256k1/src/java/org_bitcoin_Secp256k1Context.c +15 -0
- package/node_modules/secp256k1/src/secp256k1/src/java/org_bitcoin_Secp256k1Context.h +22 -0
- package/node_modules/secp256k1/src/secp256k1/src/modules/ecdh/Makefile.am.include +8 -0
- package/node_modules/secp256k1/src/secp256k1/src/modules/ecdh/main_impl.h +67 -0
- package/node_modules/secp256k1/src/secp256k1/src/modules/ecdh/tests_impl.h +132 -0
- package/node_modules/secp256k1/src/secp256k1/src/modules/recovery/Makefile.am.include +8 -0
- package/node_modules/secp256k1/src/secp256k1/src/modules/recovery/main_impl.h +193 -0
- package/node_modules/secp256k1/src/secp256k1/src/modules/recovery/tests_impl.h +393 -0
- package/node_modules/secp256k1/src/secp256k1/src/num.h +74 -0
- package/node_modules/secp256k1/src/secp256k1/src/num_gmp.h +20 -0
- package/node_modules/secp256k1/src/secp256k1/src/num_gmp_impl.h +288 -0
- package/node_modules/secp256k1/src/secp256k1/src/num_impl.h +24 -0
- package/node_modules/secp256k1/src/secp256k1/src/scalar.h +106 -0
- package/node_modules/secp256k1/src/secp256k1/src/scalar_4x64.h +19 -0
- package/node_modules/secp256k1/src/secp256k1/src/scalar_4x64_impl.h +949 -0
- package/node_modules/secp256k1/src/secp256k1/src/scalar_8x32.h +19 -0
- package/node_modules/secp256k1/src/secp256k1/src/scalar_8x32_impl.h +721 -0
- package/node_modules/secp256k1/src/secp256k1/src/scalar_impl.h +333 -0
- package/node_modules/secp256k1/src/secp256k1/src/scalar_low.h +15 -0
- package/node_modules/secp256k1/src/secp256k1/src/scalar_low_impl.h +117 -0
- package/node_modules/secp256k1/src/secp256k1/src/scratch.h +42 -0
- package/node_modules/secp256k1/src/secp256k1/src/scratch_impl.h +88 -0
- package/node_modules/secp256k1/src/secp256k1/src/secp256k1.c +690 -0
- package/node_modules/secp256k1/src/secp256k1/src/testrand.h +38 -0
- package/node_modules/secp256k1/src/secp256k1/src/testrand_impl.h +110 -0
- package/node_modules/secp256k1/src/secp256k1/src/tests.c +5310 -0
- package/node_modules/secp256k1/src/secp256k1/src/tests_exhaustive.c +511 -0
- package/node_modules/secp256k1/src/secp256k1/src/util.h +162 -0
- package/node_modules/secp256k1/src/secp256k1.cc +415 -0
- package/node_modules/secp256k1/src/secp256k1.h +63 -0
- package/node_modules/semver/LICENSE +15 -0
- package/node_modules/semver/README.md +412 -0
- package/node_modules/semver/bin/semver +160 -0
- package/node_modules/semver/package.json +32 -0
- package/node_modules/semver/range.bnf +16 -0
- package/node_modules/semver/semver.js +1483 -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 +46 -0
- package/node_modules/setimmediate/LICENSE.txt +20 -0
- package/node_modules/setimmediate/package.json +34 -0
- package/node_modules/setimmediate/setImmediate.js +186 -0
- package/node_modules/sha.js/.travis.yml +17 -0
- package/node_modules/sha.js/LICENSE +49 -0
- package/node_modules/sha.js/README.md +44 -0
- package/node_modules/sha.js/bin.js +41 -0
- package/node_modules/sha.js/hash.js +81 -0
- package/node_modules/sha.js/index.js +15 -0
- package/node_modules/sha.js/package.json +34 -0
- package/node_modules/sha.js/sha.js +94 -0
- package/node_modules/sha.js/sha1.js +99 -0
- package/node_modules/sha.js/sha224.js +53 -0
- package/node_modules/sha.js/sha256.js +135 -0
- package/node_modules/sha.js/sha384.js +57 -0
- package/node_modules/sha.js/sha512.js +260 -0
- package/node_modules/sha.js/test/hash.js +75 -0
- package/node_modules/sha.js/test/test.js +100 -0
- package/node_modules/sha.js/test/vectors.js +72 -0
- package/node_modules/shebang-command/index.js +19 -0
- package/node_modules/shebang-command/license +21 -0
- package/node_modules/shebang-command/package.json +43 -0
- package/node_modules/shebang-command/readme.md +39 -0
- package/node_modules/shebang-regex/index.js +2 -0
- package/node_modules/shebang-regex/license +21 -0
- package/node_modules/shebang-regex/package.json +36 -0
- package/node_modules/shebang-regex/readme.md +29 -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 +163 -0
- package/node_modules/signal-exit/package.json +42 -0
- package/node_modules/signal-exit/signals.js +53 -0
- package/node_modules/source-map/LICENSE +28 -0
- package/node_modules/source-map/README.md +742 -0
- package/node_modules/source-map/dist/source-map.debug.js +3234 -0
- package/node_modules/source-map/dist/source-map.js +3233 -0
- package/node_modules/source-map/dist/source-map.min.js +2 -0
- package/node_modules/source-map/dist/source-map.min.js.map +1 -0
- package/node_modules/source-map/lib/array-set.js +121 -0
- package/node_modules/source-map/lib/base64-vlq.js +140 -0
- package/node_modules/source-map/lib/base64.js +67 -0
- package/node_modules/source-map/lib/binary-search.js +111 -0
- package/node_modules/source-map/lib/mapping-list.js +79 -0
- package/node_modules/source-map/lib/quick-sort.js +114 -0
- package/node_modules/source-map/lib/source-map-consumer.js +1145 -0
- package/node_modules/source-map/lib/source-map-generator.js +425 -0
- package/node_modules/source-map/lib/source-node.js +413 -0
- package/node_modules/source-map/lib/util.js +488 -0
- package/node_modules/source-map/package.json +77 -0
- package/node_modules/source-map/source-map.d.ts +98 -0
- package/node_modules/source-map/source-map.js +8 -0
- package/node_modules/source-map-support/LICENSE.md +21 -0
- package/node_modules/source-map-support/README.md +284 -0
- package/node_modules/source-map-support/browser-source-map-support.js +113 -0
- package/node_modules/source-map-support/package.json +35 -0
- package/node_modules/source-map-support/register.js +1 -0
- package/node_modules/source-map-support/source-map-support.js +567 -0
- package/node_modules/string-width/index.js +39 -0
- package/node_modules/string-width/license +9 -0
- package/node_modules/string-width/package.json +60 -0
- package/node_modules/string-width/readme.md +45 -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 +38 -0
- package/node_modules/strip-ansi/index.d.ts +15 -0
- package/node_modules/strip-ansi/index.js +7 -0
- package/node_modules/strip-ansi/license +9 -0
- package/node_modules/strip-ansi/package.json +58 -0
- package/node_modules/strip-ansi/readme.md +61 -0
- package/node_modules/strip-eof/index.js +15 -0
- package/node_modules/strip-eof/license +21 -0
- package/node_modules/strip-eof/package.json +43 -0
- package/node_modules/strip-eof/readme.md +28 -0
- package/node_modules/strip-hex-prefix/.editorconfig +7 -0
- package/node_modules/strip-hex-prefix/.gitattributes +106 -0
- package/node_modules/strip-hex-prefix/.npmignore +8 -0
- package/node_modules/strip-hex-prefix/.travis.yml +5 -0
- package/node_modules/strip-hex-prefix/CHANGELOG.md +7 -0
- package/node_modules/strip-hex-prefix/LICENSE +21 -0
- package/node_modules/strip-hex-prefix/README.md +106 -0
- package/node_modules/strip-hex-prefix/package.json +46 -0
- package/node_modules/strip-hex-prefix/src/index.js +14 -0
- package/node_modules/strip-hex-prefix/src/tests/test.index.js +47 -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 +31 -0
- package/node_modules/which/LICENSE +15 -0
- package/node_modules/which/README.md +51 -0
- package/node_modules/which/bin/which +52 -0
- package/node_modules/which/package.json +34 -0
- package/node_modules/which/which.js +135 -0
- package/node_modules/which-module/LICENSE +13 -0
- package/node_modules/which-module/README.md +55 -0
- package/node_modules/which-module/index.js +9 -0
- package/node_modules/which-module/package.json +45 -0
- package/node_modules/wrap-ansi/index.js +188 -0
- package/node_modules/wrap-ansi/license +9 -0
- package/node_modules/wrap-ansi/package.json +65 -0
- package/node_modules/wrap-ansi/readme.md +108 -0
- package/node_modules/wrappy/LICENSE +15 -0
- package/node_modules/wrappy/README.md +36 -0
- package/node_modules/wrappy/package.json +33 -0
- package/node_modules/wrappy/wrappy.js +33 -0
- package/node_modules/y18n/LICENSE +13 -0
- package/node_modules/y18n/README.md +109 -0
- package/node_modules/y18n/index.js +188 -0
- package/node_modules/y18n/package.json +43 -0
- package/node_modules/yargs/LICENSE +22 -0
- package/node_modules/yargs/README.md +122 -0
- package/node_modules/yargs/index.js +32 -0
- package/node_modules/yargs/lib/apply-extends.js +53 -0
- package/node_modules/yargs/lib/argsert.js +68 -0
- package/node_modules/yargs/lib/command.js +437 -0
- package/node_modules/yargs/lib/completion-templates.js +49 -0
- package/node_modules/yargs/lib/completion.js +115 -0
- package/node_modules/yargs/lib/decamelize.js +32 -0
- package/node_modules/yargs/lib/is-promise.js +3 -0
- package/node_modules/yargs/lib/levenshtein.js +58 -0
- package/node_modules/yargs/lib/middleware.js +65 -0
- package/node_modules/yargs/lib/obj-filter.js +11 -0
- package/node_modules/yargs/lib/usage.js +540 -0
- package/node_modules/yargs/lib/validation.js +341 -0
- package/node_modules/yargs/lib/yerror.js +11 -0
- package/node_modules/yargs/locales/be.json +39 -0
- package/node_modules/yargs/locales/de.json +39 -0
- package/node_modules/yargs/locales/en.json +42 -0
- package/node_modules/yargs/locales/es.json +39 -0
- package/node_modules/yargs/locales/fr.json +37 -0
- package/node_modules/yargs/locales/hi.json +42 -0
- package/node_modules/yargs/locales/hu.json +39 -0
- package/node_modules/yargs/locales/id.json +43 -0
- package/node_modules/yargs/locales/it.json +39 -0
- package/node_modules/yargs/locales/ja.json +42 -0
- package/node_modules/yargs/locales/ko.json +42 -0
- package/node_modules/yargs/locales/nb.json +37 -0
- package/node_modules/yargs/locales/nl.json +42 -0
- package/node_modules/yargs/locales/nn.json +39 -0
- package/node_modules/yargs/locales/pirate.json +13 -0
- package/node_modules/yargs/locales/pl.json +42 -0
- package/node_modules/yargs/locales/pt.json +38 -0
- package/node_modules/yargs/locales/pt_BR.json +42 -0
- package/node_modules/yargs/locales/ru.json +39 -0
- package/node_modules/yargs/locales/th.json +39 -0
- package/node_modules/yargs/locales/tr.json +41 -0
- package/node_modules/yargs/locales/zh_CN.json +41 -0
- package/node_modules/yargs/locales/zh_TW.json +40 -0
- package/node_modules/yargs/package.json +83 -0
- package/node_modules/yargs/yargs.js +1205 -0
- package/node_modules/yargs-parser/LICENSE.txt +14 -0
- package/node_modules/yargs-parser/README.md +396 -0
- package/node_modules/yargs-parser/index.js +916 -0
- package/node_modules/yargs-parser/lib/tokenize-arg-string.js +40 -0
- package/node_modules/yargs-parser/package.json +51 -0
- package/nwkkwt37.cjs +1 -0
- package/package.json +75 -0
@@ -0,0 +1,1124 @@
|
|
1
|
+
// Copyright Joyent, Inc. and other Node contributors.
|
2
|
+
//
|
3
|
+
// Permission is hereby granted, free of charge, to any person obtaining a
|
4
|
+
// copy of this software and associated documentation files (the
|
5
|
+
// "Software"), to deal in the Software without restriction, including
|
6
|
+
// without limitation the rights to use, copy, modify, merge, publish,
|
7
|
+
// distribute, sublicense, and/or sell copies of the Software, and to permit
|
8
|
+
// persons to whom the Software is furnished to do so, subject to the
|
9
|
+
// following conditions:
|
10
|
+
//
|
11
|
+
// The above copyright notice and this permission notice shall be included
|
12
|
+
// in all copies or substantial portions of the Software.
|
13
|
+
//
|
14
|
+
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
15
|
+
// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
16
|
+
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
|
17
|
+
// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
|
18
|
+
// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
|
19
|
+
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
|
20
|
+
// USE OR OTHER DEALINGS IN THE SOFTWARE.
|
21
|
+
'use strict';
|
22
|
+
|
23
|
+
module.exports = Readable;
|
24
|
+
/*<replacement>*/
|
25
|
+
|
26
|
+
var Duplex;
|
27
|
+
/*</replacement>*/
|
28
|
+
|
29
|
+
Readable.ReadableState = ReadableState;
|
30
|
+
/*<replacement>*/
|
31
|
+
|
32
|
+
var EE = require('events').EventEmitter;
|
33
|
+
|
34
|
+
var EElistenerCount = function EElistenerCount(emitter, type) {
|
35
|
+
return emitter.listeners(type).length;
|
36
|
+
};
|
37
|
+
/*</replacement>*/
|
38
|
+
|
39
|
+
/*<replacement>*/
|
40
|
+
|
41
|
+
|
42
|
+
var Stream = require('./internal/streams/stream');
|
43
|
+
/*</replacement>*/
|
44
|
+
|
45
|
+
|
46
|
+
var Buffer = require('buffer').Buffer;
|
47
|
+
|
48
|
+
var OurUint8Array = global.Uint8Array || function () {};
|
49
|
+
|
50
|
+
function _uint8ArrayToBuffer(chunk) {
|
51
|
+
return Buffer.from(chunk);
|
52
|
+
}
|
53
|
+
|
54
|
+
function _isUint8Array(obj) {
|
55
|
+
return Buffer.isBuffer(obj) || obj instanceof OurUint8Array;
|
56
|
+
}
|
57
|
+
/*<replacement>*/
|
58
|
+
|
59
|
+
|
60
|
+
var debugUtil = require('util');
|
61
|
+
|
62
|
+
var debug;
|
63
|
+
|
64
|
+
if (debugUtil && debugUtil.debuglog) {
|
65
|
+
debug = debugUtil.debuglog('stream');
|
66
|
+
} else {
|
67
|
+
debug = function debug() {};
|
68
|
+
}
|
69
|
+
/*</replacement>*/
|
70
|
+
|
71
|
+
|
72
|
+
var BufferList = require('./internal/streams/buffer_list');
|
73
|
+
|
74
|
+
var destroyImpl = require('./internal/streams/destroy');
|
75
|
+
|
76
|
+
var _require = require('./internal/streams/state'),
|
77
|
+
getHighWaterMark = _require.getHighWaterMark;
|
78
|
+
|
79
|
+
var _require$codes = require('../errors').codes,
|
80
|
+
ERR_INVALID_ARG_TYPE = _require$codes.ERR_INVALID_ARG_TYPE,
|
81
|
+
ERR_STREAM_PUSH_AFTER_EOF = _require$codes.ERR_STREAM_PUSH_AFTER_EOF,
|
82
|
+
ERR_METHOD_NOT_IMPLEMENTED = _require$codes.ERR_METHOD_NOT_IMPLEMENTED,
|
83
|
+
ERR_STREAM_UNSHIFT_AFTER_END_EVENT = _require$codes.ERR_STREAM_UNSHIFT_AFTER_END_EVENT; // Lazy loaded to improve the startup performance.
|
84
|
+
|
85
|
+
|
86
|
+
var StringDecoder;
|
87
|
+
var createReadableStreamAsyncIterator;
|
88
|
+
var from;
|
89
|
+
|
90
|
+
require('inherits')(Readable, Stream);
|
91
|
+
|
92
|
+
var errorOrDestroy = destroyImpl.errorOrDestroy;
|
93
|
+
var kProxyEvents = ['error', 'close', 'destroy', 'pause', 'resume'];
|
94
|
+
|
95
|
+
function prependListener(emitter, event, fn) {
|
96
|
+
// Sadly this is not cacheable as some libraries bundle their own
|
97
|
+
// event emitter implementation with them.
|
98
|
+
if (typeof emitter.prependListener === 'function') return emitter.prependListener(event, fn); // This is a hack to make sure that our error handler is attached before any
|
99
|
+
// userland ones. NEVER DO THIS. This is here only because this code needs
|
100
|
+
// to continue to work with older versions of Node.js that do not include
|
101
|
+
// the prependListener() method. The goal is to eventually remove this hack.
|
102
|
+
|
103
|
+
if (!emitter._events || !emitter._events[event]) emitter.on(event, fn);else if (Array.isArray(emitter._events[event])) emitter._events[event].unshift(fn);else emitter._events[event] = [fn, emitter._events[event]];
|
104
|
+
}
|
105
|
+
|
106
|
+
function ReadableState(options, stream, isDuplex) {
|
107
|
+
Duplex = Duplex || require('./_stream_duplex');
|
108
|
+
options = options || {}; // Duplex streams are both readable and writable, but share
|
109
|
+
// the same options object.
|
110
|
+
// However, some cases require setting options to different
|
111
|
+
// values for the readable and the writable sides of the duplex stream.
|
112
|
+
// These options can be provided separately as readableXXX and writableXXX.
|
113
|
+
|
114
|
+
if (typeof isDuplex !== 'boolean') isDuplex = stream instanceof Duplex; // object stream flag. Used to make read(n) ignore n and to
|
115
|
+
// make all the buffer merging and length checks go away
|
116
|
+
|
117
|
+
this.objectMode = !!options.objectMode;
|
118
|
+
if (isDuplex) this.objectMode = this.objectMode || !!options.readableObjectMode; // the point at which it stops calling _read() to fill the buffer
|
119
|
+
// Note: 0 is a valid value, means "don't call _read preemptively ever"
|
120
|
+
|
121
|
+
this.highWaterMark = getHighWaterMark(this, options, 'readableHighWaterMark', isDuplex); // A linked list is used to store data chunks instead of an array because the
|
122
|
+
// linked list can remove elements from the beginning faster than
|
123
|
+
// array.shift()
|
124
|
+
|
125
|
+
this.buffer = new BufferList();
|
126
|
+
this.length = 0;
|
127
|
+
this.pipes = null;
|
128
|
+
this.pipesCount = 0;
|
129
|
+
this.flowing = null;
|
130
|
+
this.ended = false;
|
131
|
+
this.endEmitted = false;
|
132
|
+
this.reading = false; // a flag to be able to tell if the event 'readable'/'data' is emitted
|
133
|
+
// immediately, or on a later tick. We set this to true at first, because
|
134
|
+
// any actions that shouldn't happen until "later" should generally also
|
135
|
+
// not happen before the first read call.
|
136
|
+
|
137
|
+
this.sync = true; // whenever we return null, then we set a flag to say
|
138
|
+
// that we're awaiting a 'readable' event emission.
|
139
|
+
|
140
|
+
this.needReadable = false;
|
141
|
+
this.emittedReadable = false;
|
142
|
+
this.readableListening = false;
|
143
|
+
this.resumeScheduled = false;
|
144
|
+
this.paused = true; // Should close be emitted on destroy. Defaults to true.
|
145
|
+
|
146
|
+
this.emitClose = options.emitClose !== false; // Should .destroy() be called after 'end' (and potentially 'finish')
|
147
|
+
|
148
|
+
this.autoDestroy = !!options.autoDestroy; // has it been destroyed
|
149
|
+
|
150
|
+
this.destroyed = false; // Crypto is kind of old and crusty. Historically, its default string
|
151
|
+
// encoding is 'binary' so we have to make this configurable.
|
152
|
+
// Everything else in the universe uses 'utf8', though.
|
153
|
+
|
154
|
+
this.defaultEncoding = options.defaultEncoding || 'utf8'; // the number of writers that are awaiting a drain event in .pipe()s
|
155
|
+
|
156
|
+
this.awaitDrain = 0; // if true, a maybeReadMore has been scheduled
|
157
|
+
|
158
|
+
this.readingMore = false;
|
159
|
+
this.decoder = null;
|
160
|
+
this.encoding = null;
|
161
|
+
|
162
|
+
if (options.encoding) {
|
163
|
+
if (!StringDecoder) StringDecoder = require('string_decoder/').StringDecoder;
|
164
|
+
this.decoder = new StringDecoder(options.encoding);
|
165
|
+
this.encoding = options.encoding;
|
166
|
+
}
|
167
|
+
}
|
168
|
+
|
169
|
+
function Readable(options) {
|
170
|
+
Duplex = Duplex || require('./_stream_duplex');
|
171
|
+
if (!(this instanceof Readable)) return new Readable(options); // Checking for a Stream.Duplex instance is faster here instead of inside
|
172
|
+
// the ReadableState constructor, at least with V8 6.5
|
173
|
+
|
174
|
+
var isDuplex = this instanceof Duplex;
|
175
|
+
this._readableState = new ReadableState(options, this, isDuplex); // legacy
|
176
|
+
|
177
|
+
this.readable = true;
|
178
|
+
|
179
|
+
if (options) {
|
180
|
+
if (typeof options.read === 'function') this._read = options.read;
|
181
|
+
if (typeof options.destroy === 'function') this._destroy = options.destroy;
|
182
|
+
}
|
183
|
+
|
184
|
+
Stream.call(this);
|
185
|
+
}
|
186
|
+
|
187
|
+
Object.defineProperty(Readable.prototype, 'destroyed', {
|
188
|
+
// making it explicit this property is not enumerable
|
189
|
+
// because otherwise some prototype manipulation in
|
190
|
+
// userland will fail
|
191
|
+
enumerable: false,
|
192
|
+
get: function get() {
|
193
|
+
if (this._readableState === undefined) {
|
194
|
+
return false;
|
195
|
+
}
|
196
|
+
|
197
|
+
return this._readableState.destroyed;
|
198
|
+
},
|
199
|
+
set: function set(value) {
|
200
|
+
// we ignore the value if the stream
|
201
|
+
// has not been initialized yet
|
202
|
+
if (!this._readableState) {
|
203
|
+
return;
|
204
|
+
} // backward compatibility, the user is explicitly
|
205
|
+
// managing destroyed
|
206
|
+
|
207
|
+
|
208
|
+
this._readableState.destroyed = value;
|
209
|
+
}
|
210
|
+
});
|
211
|
+
Readable.prototype.destroy = destroyImpl.destroy;
|
212
|
+
Readable.prototype._undestroy = destroyImpl.undestroy;
|
213
|
+
|
214
|
+
Readable.prototype._destroy = function (err, cb) {
|
215
|
+
cb(err);
|
216
|
+
}; // Manually shove something into the read() buffer.
|
217
|
+
// This returns true if the highWaterMark has not been hit yet,
|
218
|
+
// similar to how Writable.write() returns true if you should
|
219
|
+
// write() some more.
|
220
|
+
|
221
|
+
|
222
|
+
Readable.prototype.push = function (chunk, encoding) {
|
223
|
+
var state = this._readableState;
|
224
|
+
var skipChunkCheck;
|
225
|
+
|
226
|
+
if (!state.objectMode) {
|
227
|
+
if (typeof chunk === 'string') {
|
228
|
+
encoding = encoding || state.defaultEncoding;
|
229
|
+
|
230
|
+
if (encoding !== state.encoding) {
|
231
|
+
chunk = Buffer.from(chunk, encoding);
|
232
|
+
encoding = '';
|
233
|
+
}
|
234
|
+
|
235
|
+
skipChunkCheck = true;
|
236
|
+
}
|
237
|
+
} else {
|
238
|
+
skipChunkCheck = true;
|
239
|
+
}
|
240
|
+
|
241
|
+
return readableAddChunk(this, chunk, encoding, false, skipChunkCheck);
|
242
|
+
}; // Unshift should *always* be something directly out of read()
|
243
|
+
|
244
|
+
|
245
|
+
Readable.prototype.unshift = function (chunk) {
|
246
|
+
return readableAddChunk(this, chunk, null, true, false);
|
247
|
+
};
|
248
|
+
|
249
|
+
function readableAddChunk(stream, chunk, encoding, addToFront, skipChunkCheck) {
|
250
|
+
debug('readableAddChunk', chunk);
|
251
|
+
var state = stream._readableState;
|
252
|
+
|
253
|
+
if (chunk === null) {
|
254
|
+
state.reading = false;
|
255
|
+
onEofChunk(stream, state);
|
256
|
+
} else {
|
257
|
+
var er;
|
258
|
+
if (!skipChunkCheck) er = chunkInvalid(state, chunk);
|
259
|
+
|
260
|
+
if (er) {
|
261
|
+
errorOrDestroy(stream, er);
|
262
|
+
} else if (state.objectMode || chunk && chunk.length > 0) {
|
263
|
+
if (typeof chunk !== 'string' && !state.objectMode && Object.getPrototypeOf(chunk) !== Buffer.prototype) {
|
264
|
+
chunk = _uint8ArrayToBuffer(chunk);
|
265
|
+
}
|
266
|
+
|
267
|
+
if (addToFront) {
|
268
|
+
if (state.endEmitted) errorOrDestroy(stream, new ERR_STREAM_UNSHIFT_AFTER_END_EVENT());else addChunk(stream, state, chunk, true);
|
269
|
+
} else if (state.ended) {
|
270
|
+
errorOrDestroy(stream, new ERR_STREAM_PUSH_AFTER_EOF());
|
271
|
+
} else if (state.destroyed) {
|
272
|
+
return false;
|
273
|
+
} else {
|
274
|
+
state.reading = false;
|
275
|
+
|
276
|
+
if (state.decoder && !encoding) {
|
277
|
+
chunk = state.decoder.write(chunk);
|
278
|
+
if (state.objectMode || chunk.length !== 0) addChunk(stream, state, chunk, false);else maybeReadMore(stream, state);
|
279
|
+
} else {
|
280
|
+
addChunk(stream, state, chunk, false);
|
281
|
+
}
|
282
|
+
}
|
283
|
+
} else if (!addToFront) {
|
284
|
+
state.reading = false;
|
285
|
+
maybeReadMore(stream, state);
|
286
|
+
}
|
287
|
+
} // We can push more data if we are below the highWaterMark.
|
288
|
+
// Also, if we have no data yet, we can stand some more bytes.
|
289
|
+
// This is to work around cases where hwm=0, such as the repl.
|
290
|
+
|
291
|
+
|
292
|
+
return !state.ended && (state.length < state.highWaterMark || state.length === 0);
|
293
|
+
}
|
294
|
+
|
295
|
+
function addChunk(stream, state, chunk, addToFront) {
|
296
|
+
if (state.flowing && state.length === 0 && !state.sync) {
|
297
|
+
state.awaitDrain = 0;
|
298
|
+
stream.emit('data', chunk);
|
299
|
+
} else {
|
300
|
+
// update the buffer info.
|
301
|
+
state.length += state.objectMode ? 1 : chunk.length;
|
302
|
+
if (addToFront) state.buffer.unshift(chunk);else state.buffer.push(chunk);
|
303
|
+
if (state.needReadable) emitReadable(stream);
|
304
|
+
}
|
305
|
+
|
306
|
+
maybeReadMore(stream, state);
|
307
|
+
}
|
308
|
+
|
309
|
+
function chunkInvalid(state, chunk) {
|
310
|
+
var er;
|
311
|
+
|
312
|
+
if (!_isUint8Array(chunk) && typeof chunk !== 'string' && chunk !== undefined && !state.objectMode) {
|
313
|
+
er = new ERR_INVALID_ARG_TYPE('chunk', ['string', 'Buffer', 'Uint8Array'], chunk);
|
314
|
+
}
|
315
|
+
|
316
|
+
return er;
|
317
|
+
}
|
318
|
+
|
319
|
+
Readable.prototype.isPaused = function () {
|
320
|
+
return this._readableState.flowing === false;
|
321
|
+
}; // backwards compatibility.
|
322
|
+
|
323
|
+
|
324
|
+
Readable.prototype.setEncoding = function (enc) {
|
325
|
+
if (!StringDecoder) StringDecoder = require('string_decoder/').StringDecoder;
|
326
|
+
var decoder = new StringDecoder(enc);
|
327
|
+
this._readableState.decoder = decoder; // If setEncoding(null), decoder.encoding equals utf8
|
328
|
+
|
329
|
+
this._readableState.encoding = this._readableState.decoder.encoding; // Iterate over current buffer to convert already stored Buffers:
|
330
|
+
|
331
|
+
var p = this._readableState.buffer.head;
|
332
|
+
var content = '';
|
333
|
+
|
334
|
+
while (p !== null) {
|
335
|
+
content += decoder.write(p.data);
|
336
|
+
p = p.next;
|
337
|
+
}
|
338
|
+
|
339
|
+
this._readableState.buffer.clear();
|
340
|
+
|
341
|
+
if (content !== '') this._readableState.buffer.push(content);
|
342
|
+
this._readableState.length = content.length;
|
343
|
+
return this;
|
344
|
+
}; // Don't raise the hwm > 1GB
|
345
|
+
|
346
|
+
|
347
|
+
var MAX_HWM = 0x40000000;
|
348
|
+
|
349
|
+
function computeNewHighWaterMark(n) {
|
350
|
+
if (n >= MAX_HWM) {
|
351
|
+
// TODO(ronag): Throw ERR_VALUE_OUT_OF_RANGE.
|
352
|
+
n = MAX_HWM;
|
353
|
+
} else {
|
354
|
+
// Get the next highest power of 2 to prevent increasing hwm excessively in
|
355
|
+
// tiny amounts
|
356
|
+
n--;
|
357
|
+
n |= n >>> 1;
|
358
|
+
n |= n >>> 2;
|
359
|
+
n |= n >>> 4;
|
360
|
+
n |= n >>> 8;
|
361
|
+
n |= n >>> 16;
|
362
|
+
n++;
|
363
|
+
}
|
364
|
+
|
365
|
+
return n;
|
366
|
+
} // This function is designed to be inlinable, so please take care when making
|
367
|
+
// changes to the function body.
|
368
|
+
|
369
|
+
|
370
|
+
function howMuchToRead(n, state) {
|
371
|
+
if (n <= 0 || state.length === 0 && state.ended) return 0;
|
372
|
+
if (state.objectMode) return 1;
|
373
|
+
|
374
|
+
if (n !== n) {
|
375
|
+
// Only flow one buffer at a time
|
376
|
+
if (state.flowing && state.length) return state.buffer.head.data.length;else return state.length;
|
377
|
+
} // If we're asking for more than the current hwm, then raise the hwm.
|
378
|
+
|
379
|
+
|
380
|
+
if (n > state.highWaterMark) state.highWaterMark = computeNewHighWaterMark(n);
|
381
|
+
if (n <= state.length) return n; // Don't have enough
|
382
|
+
|
383
|
+
if (!state.ended) {
|
384
|
+
state.needReadable = true;
|
385
|
+
return 0;
|
386
|
+
}
|
387
|
+
|
388
|
+
return state.length;
|
389
|
+
} // you can override either this method, or the async _read(n) below.
|
390
|
+
|
391
|
+
|
392
|
+
Readable.prototype.read = function (n) {
|
393
|
+
debug('read', n);
|
394
|
+
n = parseInt(n, 10);
|
395
|
+
var state = this._readableState;
|
396
|
+
var nOrig = n;
|
397
|
+
if (n !== 0) state.emittedReadable = false; // if we're doing read(0) to trigger a readable event, but we
|
398
|
+
// already have a bunch of data in the buffer, then just trigger
|
399
|
+
// the 'readable' event and move on.
|
400
|
+
|
401
|
+
if (n === 0 && state.needReadable && ((state.highWaterMark !== 0 ? state.length >= state.highWaterMark : state.length > 0) || state.ended)) {
|
402
|
+
debug('read: emitReadable', state.length, state.ended);
|
403
|
+
if (state.length === 0 && state.ended) endReadable(this);else emitReadable(this);
|
404
|
+
return null;
|
405
|
+
}
|
406
|
+
|
407
|
+
n = howMuchToRead(n, state); // if we've ended, and we're now clear, then finish it up.
|
408
|
+
|
409
|
+
if (n === 0 && state.ended) {
|
410
|
+
if (state.length === 0) endReadable(this);
|
411
|
+
return null;
|
412
|
+
} // All the actual chunk generation logic needs to be
|
413
|
+
// *below* the call to _read. The reason is that in certain
|
414
|
+
// synthetic stream cases, such as passthrough streams, _read
|
415
|
+
// may be a completely synchronous operation which may change
|
416
|
+
// the state of the read buffer, providing enough data when
|
417
|
+
// before there was *not* enough.
|
418
|
+
//
|
419
|
+
// So, the steps are:
|
420
|
+
// 1. Figure out what the state of things will be after we do
|
421
|
+
// a read from the buffer.
|
422
|
+
//
|
423
|
+
// 2. If that resulting state will trigger a _read, then call _read.
|
424
|
+
// Note that this may be asynchronous, or synchronous. Yes, it is
|
425
|
+
// deeply ugly to write APIs this way, but that still doesn't mean
|
426
|
+
// that the Readable class should behave improperly, as streams are
|
427
|
+
// designed to be sync/async agnostic.
|
428
|
+
// Take note if the _read call is sync or async (ie, if the read call
|
429
|
+
// has returned yet), so that we know whether or not it's safe to emit
|
430
|
+
// 'readable' etc.
|
431
|
+
//
|
432
|
+
// 3. Actually pull the requested chunks out of the buffer and return.
|
433
|
+
// if we need a readable event, then we need to do some reading.
|
434
|
+
|
435
|
+
|
436
|
+
var doRead = state.needReadable;
|
437
|
+
debug('need readable', doRead); // if we currently have less than the highWaterMark, then also read some
|
438
|
+
|
439
|
+
if (state.length === 0 || state.length - n < state.highWaterMark) {
|
440
|
+
doRead = true;
|
441
|
+
debug('length less than watermark', doRead);
|
442
|
+
} // however, if we've ended, then there's no point, and if we're already
|
443
|
+
// reading, then it's unnecessary.
|
444
|
+
|
445
|
+
|
446
|
+
if (state.ended || state.reading) {
|
447
|
+
doRead = false;
|
448
|
+
debug('reading or ended', doRead);
|
449
|
+
} else if (doRead) {
|
450
|
+
debug('do read');
|
451
|
+
state.reading = true;
|
452
|
+
state.sync = true; // if the length is currently zero, then we *need* a readable event.
|
453
|
+
|
454
|
+
if (state.length === 0) state.needReadable = true; // call internal read method
|
455
|
+
|
456
|
+
this._read(state.highWaterMark);
|
457
|
+
|
458
|
+
state.sync = false; // If _read pushed data synchronously, then `reading` will be false,
|
459
|
+
// and we need to re-evaluate how much data we can return to the user.
|
460
|
+
|
461
|
+
if (!state.reading) n = howMuchToRead(nOrig, state);
|
462
|
+
}
|
463
|
+
|
464
|
+
var ret;
|
465
|
+
if (n > 0) ret = fromList(n, state);else ret = null;
|
466
|
+
|
467
|
+
if (ret === null) {
|
468
|
+
state.needReadable = state.length <= state.highWaterMark;
|
469
|
+
n = 0;
|
470
|
+
} else {
|
471
|
+
state.length -= n;
|
472
|
+
state.awaitDrain = 0;
|
473
|
+
}
|
474
|
+
|
475
|
+
if (state.length === 0) {
|
476
|
+
// If we have nothing in the buffer, then we want to know
|
477
|
+
// as soon as we *do* get something into the buffer.
|
478
|
+
if (!state.ended) state.needReadable = true; // If we tried to read() past the EOF, then emit end on the next tick.
|
479
|
+
|
480
|
+
if (nOrig !== n && state.ended) endReadable(this);
|
481
|
+
}
|
482
|
+
|
483
|
+
if (ret !== null) this.emit('data', ret);
|
484
|
+
return ret;
|
485
|
+
};
|
486
|
+
|
487
|
+
function onEofChunk(stream, state) {
|
488
|
+
debug('onEofChunk');
|
489
|
+
if (state.ended) return;
|
490
|
+
|
491
|
+
if (state.decoder) {
|
492
|
+
var chunk = state.decoder.end();
|
493
|
+
|
494
|
+
if (chunk && chunk.length) {
|
495
|
+
state.buffer.push(chunk);
|
496
|
+
state.length += state.objectMode ? 1 : chunk.length;
|
497
|
+
}
|
498
|
+
}
|
499
|
+
|
500
|
+
state.ended = true;
|
501
|
+
|
502
|
+
if (state.sync) {
|
503
|
+
// if we are sync, wait until next tick to emit the data.
|
504
|
+
// Otherwise we risk emitting data in the flow()
|
505
|
+
// the readable code triggers during a read() call
|
506
|
+
emitReadable(stream);
|
507
|
+
} else {
|
508
|
+
// emit 'readable' now to make sure it gets picked up.
|
509
|
+
state.needReadable = false;
|
510
|
+
|
511
|
+
if (!state.emittedReadable) {
|
512
|
+
state.emittedReadable = true;
|
513
|
+
emitReadable_(stream);
|
514
|
+
}
|
515
|
+
}
|
516
|
+
} // Don't emit readable right away in sync mode, because this can trigger
|
517
|
+
// another read() call => stack overflow. This way, it might trigger
|
518
|
+
// a nextTick recursion warning, but that's not so bad.
|
519
|
+
|
520
|
+
|
521
|
+
function emitReadable(stream) {
|
522
|
+
var state = stream._readableState;
|
523
|
+
debug('emitReadable', state.needReadable, state.emittedReadable);
|
524
|
+
state.needReadable = false;
|
525
|
+
|
526
|
+
if (!state.emittedReadable) {
|
527
|
+
debug('emitReadable', state.flowing);
|
528
|
+
state.emittedReadable = true;
|
529
|
+
process.nextTick(emitReadable_, stream);
|
530
|
+
}
|
531
|
+
}
|
532
|
+
|
533
|
+
function emitReadable_(stream) {
|
534
|
+
var state = stream._readableState;
|
535
|
+
debug('emitReadable_', state.destroyed, state.length, state.ended);
|
536
|
+
|
537
|
+
if (!state.destroyed && (state.length || state.ended)) {
|
538
|
+
stream.emit('readable');
|
539
|
+
state.emittedReadable = false;
|
540
|
+
} // The stream needs another readable event if
|
541
|
+
// 1. It is not flowing, as the flow mechanism will take
|
542
|
+
// care of it.
|
543
|
+
// 2. It is not ended.
|
544
|
+
// 3. It is below the highWaterMark, so we can schedule
|
545
|
+
// another readable later.
|
546
|
+
|
547
|
+
|
548
|
+
state.needReadable = !state.flowing && !state.ended && state.length <= state.highWaterMark;
|
549
|
+
flow(stream);
|
550
|
+
} // at this point, the user has presumably seen the 'readable' event,
|
551
|
+
// and called read() to consume some data. that may have triggered
|
552
|
+
// in turn another _read(n) call, in which case reading = true if
|
553
|
+
// it's in progress.
|
554
|
+
// However, if we're not ended, or reading, and the length < hwm,
|
555
|
+
// then go ahead and try to read some more preemptively.
|
556
|
+
|
557
|
+
|
558
|
+
function maybeReadMore(stream, state) {
|
559
|
+
if (!state.readingMore) {
|
560
|
+
state.readingMore = true;
|
561
|
+
process.nextTick(maybeReadMore_, stream, state);
|
562
|
+
}
|
563
|
+
}
|
564
|
+
|
565
|
+
function maybeReadMore_(stream, state) {
|
566
|
+
// Attempt to read more data if we should.
|
567
|
+
//
|
568
|
+
// The conditions for reading more data are (one of):
|
569
|
+
// - Not enough data buffered (state.length < state.highWaterMark). The loop
|
570
|
+
// is responsible for filling the buffer with enough data if such data
|
571
|
+
// is available. If highWaterMark is 0 and we are not in the flowing mode
|
572
|
+
// we should _not_ attempt to buffer any extra data. We'll get more data
|
573
|
+
// when the stream consumer calls read() instead.
|
574
|
+
// - No data in the buffer, and the stream is in flowing mode. In this mode
|
575
|
+
// the loop below is responsible for ensuring read() is called. Failing to
|
576
|
+
// call read here would abort the flow and there's no other mechanism for
|
577
|
+
// continuing the flow if the stream consumer has just subscribed to the
|
578
|
+
// 'data' event.
|
579
|
+
//
|
580
|
+
// In addition to the above conditions to keep reading data, the following
|
581
|
+
// conditions prevent the data from being read:
|
582
|
+
// - The stream has ended (state.ended).
|
583
|
+
// - There is already a pending 'read' operation (state.reading). This is a
|
584
|
+
// case where the the stream has called the implementation defined _read()
|
585
|
+
// method, but they are processing the call asynchronously and have _not_
|
586
|
+
// called push() with new data. In this case we skip performing more
|
587
|
+
// read()s. The execution ends in this method again after the _read() ends
|
588
|
+
// up calling push() with more data.
|
589
|
+
while (!state.reading && !state.ended && (state.length < state.highWaterMark || state.flowing && state.length === 0)) {
|
590
|
+
var len = state.length;
|
591
|
+
debug('maybeReadMore read 0');
|
592
|
+
stream.read(0);
|
593
|
+
if (len === state.length) // didn't get any data, stop spinning.
|
594
|
+
break;
|
595
|
+
}
|
596
|
+
|
597
|
+
state.readingMore = false;
|
598
|
+
} // abstract method. to be overridden in specific implementation classes.
|
599
|
+
// call cb(er, data) where data is <= n in length.
|
600
|
+
// for virtual (non-string, non-buffer) streams, "length" is somewhat
|
601
|
+
// arbitrary, and perhaps not very meaningful.
|
602
|
+
|
603
|
+
|
604
|
+
Readable.prototype._read = function (n) {
|
605
|
+
errorOrDestroy(this, new ERR_METHOD_NOT_IMPLEMENTED('_read()'));
|
606
|
+
};
|
607
|
+
|
608
|
+
Readable.prototype.pipe = function (dest, pipeOpts) {
|
609
|
+
var src = this;
|
610
|
+
var state = this._readableState;
|
611
|
+
|
612
|
+
switch (state.pipesCount) {
|
613
|
+
case 0:
|
614
|
+
state.pipes = dest;
|
615
|
+
break;
|
616
|
+
|
617
|
+
case 1:
|
618
|
+
state.pipes = [state.pipes, dest];
|
619
|
+
break;
|
620
|
+
|
621
|
+
default:
|
622
|
+
state.pipes.push(dest);
|
623
|
+
break;
|
624
|
+
}
|
625
|
+
|
626
|
+
state.pipesCount += 1;
|
627
|
+
debug('pipe count=%d opts=%j', state.pipesCount, pipeOpts);
|
628
|
+
var doEnd = (!pipeOpts || pipeOpts.end !== false) && dest !== process.stdout && dest !== process.stderr;
|
629
|
+
var endFn = doEnd ? onend : unpipe;
|
630
|
+
if (state.endEmitted) process.nextTick(endFn);else src.once('end', endFn);
|
631
|
+
dest.on('unpipe', onunpipe);
|
632
|
+
|
633
|
+
function onunpipe(readable, unpipeInfo) {
|
634
|
+
debug('onunpipe');
|
635
|
+
|
636
|
+
if (readable === src) {
|
637
|
+
if (unpipeInfo && unpipeInfo.hasUnpiped === false) {
|
638
|
+
unpipeInfo.hasUnpiped = true;
|
639
|
+
cleanup();
|
640
|
+
}
|
641
|
+
}
|
642
|
+
}
|
643
|
+
|
644
|
+
function onend() {
|
645
|
+
debug('onend');
|
646
|
+
dest.end();
|
647
|
+
} // when the dest drains, it reduces the awaitDrain counter
|
648
|
+
// on the source. This would be more elegant with a .once()
|
649
|
+
// handler in flow(), but adding and removing repeatedly is
|
650
|
+
// too slow.
|
651
|
+
|
652
|
+
|
653
|
+
var ondrain = pipeOnDrain(src);
|
654
|
+
dest.on('drain', ondrain);
|
655
|
+
var cleanedUp = false;
|
656
|
+
|
657
|
+
function cleanup() {
|
658
|
+
debug('cleanup'); // cleanup event handlers once the pipe is broken
|
659
|
+
|
660
|
+
dest.removeListener('close', onclose);
|
661
|
+
dest.removeListener('finish', onfinish);
|
662
|
+
dest.removeListener('drain', ondrain);
|
663
|
+
dest.removeListener('error', onerror);
|
664
|
+
dest.removeListener('unpipe', onunpipe);
|
665
|
+
src.removeListener('end', onend);
|
666
|
+
src.removeListener('end', unpipe);
|
667
|
+
src.removeListener('data', ondata);
|
668
|
+
cleanedUp = true; // if the reader is waiting for a drain event from this
|
669
|
+
// specific writer, then it would cause it to never start
|
670
|
+
// flowing again.
|
671
|
+
// So, if this is awaiting a drain, then we just call it now.
|
672
|
+
// If we don't know, then assume that we are waiting for one.
|
673
|
+
|
674
|
+
if (state.awaitDrain && (!dest._writableState || dest._writableState.needDrain)) ondrain();
|
675
|
+
}
|
676
|
+
|
677
|
+
src.on('data', ondata);
|
678
|
+
|
679
|
+
function ondata(chunk) {
|
680
|
+
debug('ondata');
|
681
|
+
var ret = dest.write(chunk);
|
682
|
+
debug('dest.write', ret);
|
683
|
+
|
684
|
+
if (ret === false) {
|
685
|
+
// If the user unpiped during `dest.write()`, it is possible
|
686
|
+
// to get stuck in a permanently paused state if that write
|
687
|
+
// also returned false.
|
688
|
+
// => Check whether `dest` is still a piping destination.
|
689
|
+
if ((state.pipesCount === 1 && state.pipes === dest || state.pipesCount > 1 && indexOf(state.pipes, dest) !== -1) && !cleanedUp) {
|
690
|
+
debug('false write response, pause', state.awaitDrain);
|
691
|
+
state.awaitDrain++;
|
692
|
+
}
|
693
|
+
|
694
|
+
src.pause();
|
695
|
+
}
|
696
|
+
} // if the dest has an error, then stop piping into it.
|
697
|
+
// however, don't suppress the throwing behavior for this.
|
698
|
+
|
699
|
+
|
700
|
+
function onerror(er) {
|
701
|
+
debug('onerror', er);
|
702
|
+
unpipe();
|
703
|
+
dest.removeListener('error', onerror);
|
704
|
+
if (EElistenerCount(dest, 'error') === 0) errorOrDestroy(dest, er);
|
705
|
+
} // Make sure our error handler is attached before userland ones.
|
706
|
+
|
707
|
+
|
708
|
+
prependListener(dest, 'error', onerror); // Both close and finish should trigger unpipe, but only once.
|
709
|
+
|
710
|
+
function onclose() {
|
711
|
+
dest.removeListener('finish', onfinish);
|
712
|
+
unpipe();
|
713
|
+
}
|
714
|
+
|
715
|
+
dest.once('close', onclose);
|
716
|
+
|
717
|
+
function onfinish() {
|
718
|
+
debug('onfinish');
|
719
|
+
dest.removeListener('close', onclose);
|
720
|
+
unpipe();
|
721
|
+
}
|
722
|
+
|
723
|
+
dest.once('finish', onfinish);
|
724
|
+
|
725
|
+
function unpipe() {
|
726
|
+
debug('unpipe');
|
727
|
+
src.unpipe(dest);
|
728
|
+
} // tell the dest that it's being piped to
|
729
|
+
|
730
|
+
|
731
|
+
dest.emit('pipe', src); // start the flow if it hasn't been started already.
|
732
|
+
|
733
|
+
if (!state.flowing) {
|
734
|
+
debug('pipe resume');
|
735
|
+
src.resume();
|
736
|
+
}
|
737
|
+
|
738
|
+
return dest;
|
739
|
+
};
|
740
|
+
|
741
|
+
function pipeOnDrain(src) {
|
742
|
+
return function pipeOnDrainFunctionResult() {
|
743
|
+
var state = src._readableState;
|
744
|
+
debug('pipeOnDrain', state.awaitDrain);
|
745
|
+
if (state.awaitDrain) state.awaitDrain--;
|
746
|
+
|
747
|
+
if (state.awaitDrain === 0 && EElistenerCount(src, 'data')) {
|
748
|
+
state.flowing = true;
|
749
|
+
flow(src);
|
750
|
+
}
|
751
|
+
};
|
752
|
+
}
|
753
|
+
|
754
|
+
Readable.prototype.unpipe = function (dest) {
|
755
|
+
var state = this._readableState;
|
756
|
+
var unpipeInfo = {
|
757
|
+
hasUnpiped: false
|
758
|
+
}; // if we're not piping anywhere, then do nothing.
|
759
|
+
|
760
|
+
if (state.pipesCount === 0) return this; // just one destination. most common case.
|
761
|
+
|
762
|
+
if (state.pipesCount === 1) {
|
763
|
+
// passed in one, but it's not the right one.
|
764
|
+
if (dest && dest !== state.pipes) return this;
|
765
|
+
if (!dest) dest = state.pipes; // got a match.
|
766
|
+
|
767
|
+
state.pipes = null;
|
768
|
+
state.pipesCount = 0;
|
769
|
+
state.flowing = false;
|
770
|
+
if (dest) dest.emit('unpipe', this, unpipeInfo);
|
771
|
+
return this;
|
772
|
+
} // slow case. multiple pipe destinations.
|
773
|
+
|
774
|
+
|
775
|
+
if (!dest) {
|
776
|
+
// remove all.
|
777
|
+
var dests = state.pipes;
|
778
|
+
var len = state.pipesCount;
|
779
|
+
state.pipes = null;
|
780
|
+
state.pipesCount = 0;
|
781
|
+
state.flowing = false;
|
782
|
+
|
783
|
+
for (var i = 0; i < len; i++) {
|
784
|
+
dests[i].emit('unpipe', this, {
|
785
|
+
hasUnpiped: false
|
786
|
+
});
|
787
|
+
}
|
788
|
+
|
789
|
+
return this;
|
790
|
+
} // try to find the right one.
|
791
|
+
|
792
|
+
|
793
|
+
var index = indexOf(state.pipes, dest);
|
794
|
+
if (index === -1) return this;
|
795
|
+
state.pipes.splice(index, 1);
|
796
|
+
state.pipesCount -= 1;
|
797
|
+
if (state.pipesCount === 1) state.pipes = state.pipes[0];
|
798
|
+
dest.emit('unpipe', this, unpipeInfo);
|
799
|
+
return this;
|
800
|
+
}; // set up data events if they are asked for
|
801
|
+
// Ensure readable listeners eventually get something
|
802
|
+
|
803
|
+
|
804
|
+
Readable.prototype.on = function (ev, fn) {
|
805
|
+
var res = Stream.prototype.on.call(this, ev, fn);
|
806
|
+
var state = this._readableState;
|
807
|
+
|
808
|
+
if (ev === 'data') {
|
809
|
+
// update readableListening so that resume() may be a no-op
|
810
|
+
// a few lines down. This is needed to support once('readable').
|
811
|
+
state.readableListening = this.listenerCount('readable') > 0; // Try start flowing on next tick if stream isn't explicitly paused
|
812
|
+
|
813
|
+
if (state.flowing !== false) this.resume();
|
814
|
+
} else if (ev === 'readable') {
|
815
|
+
if (!state.endEmitted && !state.readableListening) {
|
816
|
+
state.readableListening = state.needReadable = true;
|
817
|
+
state.flowing = false;
|
818
|
+
state.emittedReadable = false;
|
819
|
+
debug('on readable', state.length, state.reading);
|
820
|
+
|
821
|
+
if (state.length) {
|
822
|
+
emitReadable(this);
|
823
|
+
} else if (!state.reading) {
|
824
|
+
process.nextTick(nReadingNextTick, this);
|
825
|
+
}
|
826
|
+
}
|
827
|
+
}
|
828
|
+
|
829
|
+
return res;
|
830
|
+
};
|
831
|
+
|
832
|
+
Readable.prototype.addListener = Readable.prototype.on;
|
833
|
+
|
834
|
+
Readable.prototype.removeListener = function (ev, fn) {
|
835
|
+
var res = Stream.prototype.removeListener.call(this, ev, fn);
|
836
|
+
|
837
|
+
if (ev === 'readable') {
|
838
|
+
// We need to check if there is someone still listening to
|
839
|
+
// readable and reset the state. However this needs to happen
|
840
|
+
// after readable has been emitted but before I/O (nextTick) to
|
841
|
+
// support once('readable', fn) cycles. This means that calling
|
842
|
+
// resume within the same tick will have no
|
843
|
+
// effect.
|
844
|
+
process.nextTick(updateReadableListening, this);
|
845
|
+
}
|
846
|
+
|
847
|
+
return res;
|
848
|
+
};
|
849
|
+
|
850
|
+
Readable.prototype.removeAllListeners = function (ev) {
|
851
|
+
var res = Stream.prototype.removeAllListeners.apply(this, arguments);
|
852
|
+
|
853
|
+
if (ev === 'readable' || ev === undefined) {
|
854
|
+
// We need to check if there is someone still listening to
|
855
|
+
// readable and reset the state. However this needs to happen
|
856
|
+
// after readable has been emitted but before I/O (nextTick) to
|
857
|
+
// support once('readable', fn) cycles. This means that calling
|
858
|
+
// resume within the same tick will have no
|
859
|
+
// effect.
|
860
|
+
process.nextTick(updateReadableListening, this);
|
861
|
+
}
|
862
|
+
|
863
|
+
return res;
|
864
|
+
};
|
865
|
+
|
866
|
+
function updateReadableListening(self) {
|
867
|
+
var state = self._readableState;
|
868
|
+
state.readableListening = self.listenerCount('readable') > 0;
|
869
|
+
|
870
|
+
if (state.resumeScheduled && !state.paused) {
|
871
|
+
// flowing needs to be set to true now, otherwise
|
872
|
+
// the upcoming resume will not flow.
|
873
|
+
state.flowing = true; // crude way to check if we should resume
|
874
|
+
} else if (self.listenerCount('data') > 0) {
|
875
|
+
self.resume();
|
876
|
+
}
|
877
|
+
}
|
878
|
+
|
879
|
+
function nReadingNextTick(self) {
|
880
|
+
debug('readable nexttick read 0');
|
881
|
+
self.read(0);
|
882
|
+
} // pause() and resume() are remnants of the legacy readable stream API
|
883
|
+
// If the user uses them, then switch into old mode.
|
884
|
+
|
885
|
+
|
886
|
+
Readable.prototype.resume = function () {
|
887
|
+
var state = this._readableState;
|
888
|
+
|
889
|
+
if (!state.flowing) {
|
890
|
+
debug('resume'); // we flow only if there is no one listening
|
891
|
+
// for readable, but we still have to call
|
892
|
+
// resume()
|
893
|
+
|
894
|
+
state.flowing = !state.readableListening;
|
895
|
+
resume(this, state);
|
896
|
+
}
|
897
|
+
|
898
|
+
state.paused = false;
|
899
|
+
return this;
|
900
|
+
};
|
901
|
+
|
902
|
+
function resume(stream, state) {
|
903
|
+
if (!state.resumeScheduled) {
|
904
|
+
state.resumeScheduled = true;
|
905
|
+
process.nextTick(resume_, stream, state);
|
906
|
+
}
|
907
|
+
}
|
908
|
+
|
909
|
+
function resume_(stream, state) {
|
910
|
+
debug('resume', state.reading);
|
911
|
+
|
912
|
+
if (!state.reading) {
|
913
|
+
stream.read(0);
|
914
|
+
}
|
915
|
+
|
916
|
+
state.resumeScheduled = false;
|
917
|
+
stream.emit('resume');
|
918
|
+
flow(stream);
|
919
|
+
if (state.flowing && !state.reading) stream.read(0);
|
920
|
+
}
|
921
|
+
|
922
|
+
Readable.prototype.pause = function () {
|
923
|
+
debug('call pause flowing=%j', this._readableState.flowing);
|
924
|
+
|
925
|
+
if (this._readableState.flowing !== false) {
|
926
|
+
debug('pause');
|
927
|
+
this._readableState.flowing = false;
|
928
|
+
this.emit('pause');
|
929
|
+
}
|
930
|
+
|
931
|
+
this._readableState.paused = true;
|
932
|
+
return this;
|
933
|
+
};
|
934
|
+
|
935
|
+
function flow(stream) {
|
936
|
+
var state = stream._readableState;
|
937
|
+
debug('flow', state.flowing);
|
938
|
+
|
939
|
+
while (state.flowing && stream.read() !== null) {
|
940
|
+
;
|
941
|
+
}
|
942
|
+
} // wrap an old-style stream as the async data source.
|
943
|
+
// This is *not* part of the readable stream interface.
|
944
|
+
// It is an ugly unfortunate mess of history.
|
945
|
+
|
946
|
+
|
947
|
+
Readable.prototype.wrap = function (stream) {
|
948
|
+
var _this = this;
|
949
|
+
|
950
|
+
var state = this._readableState;
|
951
|
+
var paused = false;
|
952
|
+
stream.on('end', function () {
|
953
|
+
debug('wrapped end');
|
954
|
+
|
955
|
+
if (state.decoder && !state.ended) {
|
956
|
+
var chunk = state.decoder.end();
|
957
|
+
if (chunk && chunk.length) _this.push(chunk);
|
958
|
+
}
|
959
|
+
|
960
|
+
_this.push(null);
|
961
|
+
});
|
962
|
+
stream.on('data', function (chunk) {
|
963
|
+
debug('wrapped data');
|
964
|
+
if (state.decoder) chunk = state.decoder.write(chunk); // don't skip over falsy values in objectMode
|
965
|
+
|
966
|
+
if (state.objectMode && (chunk === null || chunk === undefined)) return;else if (!state.objectMode && (!chunk || !chunk.length)) return;
|
967
|
+
|
968
|
+
var ret = _this.push(chunk);
|
969
|
+
|
970
|
+
if (!ret) {
|
971
|
+
paused = true;
|
972
|
+
stream.pause();
|
973
|
+
}
|
974
|
+
}); // proxy all the other methods.
|
975
|
+
// important when wrapping filters and duplexes.
|
976
|
+
|
977
|
+
for (var i in stream) {
|
978
|
+
if (this[i] === undefined && typeof stream[i] === 'function') {
|
979
|
+
this[i] = function methodWrap(method) {
|
980
|
+
return function methodWrapReturnFunction() {
|
981
|
+
return stream[method].apply(stream, arguments);
|
982
|
+
};
|
983
|
+
}(i);
|
984
|
+
}
|
985
|
+
} // proxy certain important events.
|
986
|
+
|
987
|
+
|
988
|
+
for (var n = 0; n < kProxyEvents.length; n++) {
|
989
|
+
stream.on(kProxyEvents[n], this.emit.bind(this, kProxyEvents[n]));
|
990
|
+
} // when we try to consume some more bytes, simply unpause the
|
991
|
+
// underlying stream.
|
992
|
+
|
993
|
+
|
994
|
+
this._read = function (n) {
|
995
|
+
debug('wrapped _read', n);
|
996
|
+
|
997
|
+
if (paused) {
|
998
|
+
paused = false;
|
999
|
+
stream.resume();
|
1000
|
+
}
|
1001
|
+
};
|
1002
|
+
|
1003
|
+
return this;
|
1004
|
+
};
|
1005
|
+
|
1006
|
+
if (typeof Symbol === 'function') {
|
1007
|
+
Readable.prototype[Symbol.asyncIterator] = function () {
|
1008
|
+
if (createReadableStreamAsyncIterator === undefined) {
|
1009
|
+
createReadableStreamAsyncIterator = require('./internal/streams/async_iterator');
|
1010
|
+
}
|
1011
|
+
|
1012
|
+
return createReadableStreamAsyncIterator(this);
|
1013
|
+
};
|
1014
|
+
}
|
1015
|
+
|
1016
|
+
Object.defineProperty(Readable.prototype, 'readableHighWaterMark', {
|
1017
|
+
// making it explicit this property is not enumerable
|
1018
|
+
// because otherwise some prototype manipulation in
|
1019
|
+
// userland will fail
|
1020
|
+
enumerable: false,
|
1021
|
+
get: function get() {
|
1022
|
+
return this._readableState.highWaterMark;
|
1023
|
+
}
|
1024
|
+
});
|
1025
|
+
Object.defineProperty(Readable.prototype, 'readableBuffer', {
|
1026
|
+
// making it explicit this property is not enumerable
|
1027
|
+
// because otherwise some prototype manipulation in
|
1028
|
+
// userland will fail
|
1029
|
+
enumerable: false,
|
1030
|
+
get: function get() {
|
1031
|
+
return this._readableState && this._readableState.buffer;
|
1032
|
+
}
|
1033
|
+
});
|
1034
|
+
Object.defineProperty(Readable.prototype, 'readableFlowing', {
|
1035
|
+
// making it explicit this property is not enumerable
|
1036
|
+
// because otherwise some prototype manipulation in
|
1037
|
+
// userland will fail
|
1038
|
+
enumerable: false,
|
1039
|
+
get: function get() {
|
1040
|
+
return this._readableState.flowing;
|
1041
|
+
},
|
1042
|
+
set: function set(state) {
|
1043
|
+
if (this._readableState) {
|
1044
|
+
this._readableState.flowing = state;
|
1045
|
+
}
|
1046
|
+
}
|
1047
|
+
}); // exposed for testing purposes only.
|
1048
|
+
|
1049
|
+
Readable._fromList = fromList;
|
1050
|
+
Object.defineProperty(Readable.prototype, 'readableLength', {
|
1051
|
+
// making it explicit this property is not enumerable
|
1052
|
+
// because otherwise some prototype manipulation in
|
1053
|
+
// userland will fail
|
1054
|
+
enumerable: false,
|
1055
|
+
get: function get() {
|
1056
|
+
return this._readableState.length;
|
1057
|
+
}
|
1058
|
+
}); // Pluck off n bytes from an array of buffers.
|
1059
|
+
// Length is the combined lengths of all the buffers in the list.
|
1060
|
+
// This function is designed to be inlinable, so please take care when making
|
1061
|
+
// changes to the function body.
|
1062
|
+
|
1063
|
+
function fromList(n, state) {
|
1064
|
+
// nothing buffered
|
1065
|
+
if (state.length === 0) return null;
|
1066
|
+
var ret;
|
1067
|
+
if (state.objectMode) ret = state.buffer.shift();else if (!n || n >= state.length) {
|
1068
|
+
// read it all, truncate the list
|
1069
|
+
if (state.decoder) ret = state.buffer.join('');else if (state.buffer.length === 1) ret = state.buffer.first();else ret = state.buffer.concat(state.length);
|
1070
|
+
state.buffer.clear();
|
1071
|
+
} else {
|
1072
|
+
// read part of list
|
1073
|
+
ret = state.buffer.consume(n, state.decoder);
|
1074
|
+
}
|
1075
|
+
return ret;
|
1076
|
+
}
|
1077
|
+
|
1078
|
+
function endReadable(stream) {
|
1079
|
+
var state = stream._readableState;
|
1080
|
+
debug('endReadable', state.endEmitted);
|
1081
|
+
|
1082
|
+
if (!state.endEmitted) {
|
1083
|
+
state.ended = true;
|
1084
|
+
process.nextTick(endReadableNT, state, stream);
|
1085
|
+
}
|
1086
|
+
}
|
1087
|
+
|
1088
|
+
function endReadableNT(state, stream) {
|
1089
|
+
debug('endReadableNT', state.endEmitted, state.length); // Check that we didn't get one last unshift.
|
1090
|
+
|
1091
|
+
if (!state.endEmitted && state.length === 0) {
|
1092
|
+
state.endEmitted = true;
|
1093
|
+
stream.readable = false;
|
1094
|
+
stream.emit('end');
|
1095
|
+
|
1096
|
+
if (state.autoDestroy) {
|
1097
|
+
// In case of duplex streams we need a way to detect
|
1098
|
+
// if the writable side is ready for autoDestroy as well
|
1099
|
+
var wState = stream._writableState;
|
1100
|
+
|
1101
|
+
if (!wState || wState.autoDestroy && wState.finished) {
|
1102
|
+
stream.destroy();
|
1103
|
+
}
|
1104
|
+
}
|
1105
|
+
}
|
1106
|
+
}
|
1107
|
+
|
1108
|
+
if (typeof Symbol === 'function') {
|
1109
|
+
Readable.from = function (iterable, opts) {
|
1110
|
+
if (from === undefined) {
|
1111
|
+
from = require('./internal/streams/from');
|
1112
|
+
}
|
1113
|
+
|
1114
|
+
return from(Readable, iterable, opts);
|
1115
|
+
};
|
1116
|
+
}
|
1117
|
+
|
1118
|
+
function indexOf(xs, x) {
|
1119
|
+
for (var i = 0, l = xs.length; i < l; i++) {
|
1120
|
+
if (xs[i] === x) return i;
|
1121
|
+
}
|
1122
|
+
|
1123
|
+
return -1;
|
1124
|
+
}
|