wiki-plugin-allyabase 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +165 -0
- package/client/allyabase.js +58 -0
- package/factory.json +5 -0
- package/package.json +31 -0
- package/server/contracts.js +256 -0
- package/server/feeds.js +27 -0
- package/server/inventory.js +82 -0
- package/server/server.js +13 -0
- package/test/node_modules/.bin/_mocha +10 -0
- package/test/node_modules/.bin/flat +42 -0
- package/test/node_modules/.bin/glob +270 -0
- package/test/node_modules/.bin/he +148 -0
- package/test/node_modules/.bin/js-yaml +126 -0
- package/test/node_modules/.bin/mime +46 -0
- package/test/node_modules/.bin/mocha +142 -0
- package/test/node_modules/.bin/node-which +52 -0
- package/test/node_modules/.bin/uuid +2 -0
- package/test/node_modules/.package-lock.json +1984 -0
- package/test/node_modules/@isaacs/cliui/LICENSE.txt +14 -0
- package/test/node_modules/@isaacs/cliui/README.md +143 -0
- package/test/node_modules/@isaacs/cliui/build/index.cjs +317 -0
- package/test/node_modules/@isaacs/cliui/build/index.d.cts +43 -0
- package/test/node_modules/@isaacs/cliui/build/lib/index.js +302 -0
- package/test/node_modules/@isaacs/cliui/index.mjs +14 -0
- package/test/node_modules/@isaacs/cliui/package.json +86 -0
- package/test/node_modules/@noble/curves/LICENSE +21 -0
- package/test/node_modules/@noble/curves/README.md +1031 -0
- package/test/node_modules/@noble/curves/_shortw_utils.d.ts +62 -0
- package/test/node_modules/@noble/curves/_shortw_utils.d.ts.map +1 -0
- package/test/node_modules/@noble/curves/_shortw_utils.js +21 -0
- package/test/node_modules/@noble/curves/_shortw_utils.js.map +1 -0
- package/test/node_modules/@noble/curves/abstract/bls.d.ts +122 -0
- package/test/node_modules/@noble/curves/abstract/bls.d.ts.map +1 -0
- package/test/node_modules/@noble/curves/abstract/bls.js +288 -0
- package/test/node_modules/@noble/curves/abstract/bls.js.map +1 -0
- package/test/node_modules/@noble/curves/abstract/curve.d.ts +70 -0
- package/test/node_modules/@noble/curves/abstract/curve.d.ts.map +1 -0
- package/test/node_modules/@noble/curves/abstract/curve.js +160 -0
- package/test/node_modules/@noble/curves/abstract/curve.js.map +1 -0
- package/test/node_modules/@noble/curves/abstract/edwards.d.ts +89 -0
- package/test/node_modules/@noble/curves/abstract/edwards.d.ts.map +1 -0
- package/test/node_modules/@noble/curves/abstract/edwards.js +428 -0
- package/test/node_modules/@noble/curves/abstract/edwards.js.map +1 -0
- package/test/node_modules/@noble/curves/abstract/hash-to-curve.d.ts +58 -0
- package/test/node_modules/@noble/curves/abstract/hash-to-curve.d.ts.map +1 -0
- package/test/node_modules/@noble/curves/abstract/hash-to-curve.js +180 -0
- package/test/node_modules/@noble/curves/abstract/hash-to-curve.js.map +1 -0
- package/test/node_modules/@noble/curves/abstract/modular.d.ts +123 -0
- package/test/node_modules/@noble/curves/abstract/modular.d.ts.map +1 -0
- package/test/node_modules/@noble/curves/abstract/modular.js +439 -0
- package/test/node_modules/@noble/curves/abstract/modular.js.map +1 -0
- package/test/node_modules/@noble/curves/abstract/montgomery.d.ts +26 -0
- package/test/node_modules/@noble/curves/abstract/montgomery.d.ts.map +1 -0
- package/test/node_modules/@noble/curves/abstract/montgomery.js +158 -0
- package/test/node_modules/@noble/curves/abstract/montgomery.js.map +1 -0
- package/test/node_modules/@noble/curves/abstract/poseidon.d.ts +30 -0
- package/test/node_modules/@noble/curves/abstract/poseidon.d.ts.map +1 -0
- package/test/node_modules/@noble/curves/abstract/poseidon.js +113 -0
- package/test/node_modules/@noble/curves/abstract/poseidon.js.map +1 -0
- package/test/node_modules/@noble/curves/abstract/utils.d.ts +94 -0
- package/test/node_modules/@noble/curves/abstract/utils.d.ts.map +1 -0
- package/test/node_modules/@noble/curves/abstract/utils.js +313 -0
- package/test/node_modules/@noble/curves/abstract/utils.js.map +1 -0
- package/test/node_modules/@noble/curves/abstract/weierstrass.d.ts +236 -0
- package/test/node_modules/@noble/curves/abstract/weierstrass.d.ts.map +1 -0
- package/test/node_modules/@noble/curves/abstract/weierstrass.js +1069 -0
- package/test/node_modules/@noble/curves/abstract/weierstrass.js.map +1 -0
- package/test/node_modules/@noble/curves/bls12-381.d.ts +67 -0
- package/test/node_modules/@noble/curves/bls12-381.d.ts.map +1 -0
- package/test/node_modules/@noble/curves/bls12-381.js +1232 -0
- package/test/node_modules/@noble/curves/bls12-381.js.map +1 -0
- package/test/node_modules/@noble/curves/bn254.d.ts +9 -0
- package/test/node_modules/@noble/curves/bn254.d.ts.map +1 -0
- package/test/node_modules/@noble/curves/bn254.js +26 -0
- package/test/node_modules/@noble/curves/bn254.js.map +1 -0
- package/test/node_modules/@noble/curves/ed25519.d.ts +78 -0
- package/test/node_modules/@noble/curves/ed25519.d.ts.map +1 -0
- package/test/node_modules/@noble/curves/ed25519.js +446 -0
- package/test/node_modules/@noble/curves/ed25519.js.map +1 -0
- package/test/node_modules/@noble/curves/ed448.d.ts +67 -0
- package/test/node_modules/@noble/curves/ed448.d.ts.map +1 -0
- package/test/node_modules/@noble/curves/ed448.js +406 -0
- package/test/node_modules/@noble/curves/ed448.js.map +1 -0
- package/test/node_modules/@noble/curves/esm/_shortw_utils.d.ts +62 -0
- package/test/node_modules/@noble/curves/esm/_shortw_utils.d.ts.map +1 -0
- package/test/node_modules/@noble/curves/esm/_shortw_utils.js +17 -0
- package/test/node_modules/@noble/curves/esm/_shortw_utils.js.map +1 -0
- package/test/node_modules/@noble/curves/esm/abstract/bls.d.ts +122 -0
- package/test/node_modules/@noble/curves/esm/abstract/bls.d.ts.map +1 -0
- package/test/node_modules/@noble/curves/esm/abstract/bls.js +285 -0
- package/test/node_modules/@noble/curves/esm/abstract/bls.js.map +1 -0
- package/test/node_modules/@noble/curves/esm/abstract/curve.d.ts +70 -0
- package/test/node_modules/@noble/curves/esm/abstract/curve.d.ts.map +1 -0
- package/test/node_modules/@noble/curves/esm/abstract/curve.js +156 -0
- package/test/node_modules/@noble/curves/esm/abstract/curve.js.map +1 -0
- package/test/node_modules/@noble/curves/esm/abstract/edwards.d.ts +89 -0
- package/test/node_modules/@noble/curves/esm/abstract/edwards.d.ts.map +1 -0
- package/test/node_modules/@noble/curves/esm/abstract/edwards.js +425 -0
- package/test/node_modules/@noble/curves/esm/abstract/edwards.js.map +1 -0
- package/test/node_modules/@noble/curves/esm/abstract/hash-to-curve.d.ts +58 -0
- package/test/node_modules/@noble/curves/esm/abstract/hash-to-curve.d.ts.map +1 -0
- package/test/node_modules/@noble/curves/esm/abstract/hash-to-curve.js +173 -0
- package/test/node_modules/@noble/curves/esm/abstract/hash-to-curve.js.map +1 -0
- package/test/node_modules/@noble/curves/esm/abstract/modular.d.ts +123 -0
- package/test/node_modules/@noble/curves/esm/abstract/modular.d.ts.map +1 -0
- package/test/node_modules/@noble/curves/esm/abstract/modular.js +416 -0
- package/test/node_modules/@noble/curves/esm/abstract/modular.js.map +1 -0
- package/test/node_modules/@noble/curves/esm/abstract/montgomery.d.ts +26 -0
- package/test/node_modules/@noble/curves/esm/abstract/montgomery.d.ts.map +1 -0
- package/test/node_modules/@noble/curves/esm/abstract/montgomery.js +155 -0
- package/test/node_modules/@noble/curves/esm/abstract/montgomery.js.map +1 -0
- package/test/node_modules/@noble/curves/esm/abstract/poseidon.d.ts +30 -0
- package/test/node_modules/@noble/curves/esm/abstract/poseidon.d.ts.map +1 -0
- package/test/node_modules/@noble/curves/esm/abstract/poseidon.js +108 -0
- package/test/node_modules/@noble/curves/esm/abstract/poseidon.js.map +1 -0
- package/test/node_modules/@noble/curves/esm/abstract/utils.d.ts +94 -0
- package/test/node_modules/@noble/curves/esm/abstract/utils.d.ts.map +1 -0
- package/test/node_modules/@noble/curves/esm/abstract/utils.js +289 -0
- package/test/node_modules/@noble/curves/esm/abstract/utils.js.map +1 -0
- package/test/node_modules/@noble/curves/esm/abstract/weierstrass.d.ts +236 -0
- package/test/node_modules/@noble/curves/esm/abstract/weierstrass.d.ts.map +1 -0
- package/test/node_modules/@noble/curves/esm/abstract/weierstrass.js +1062 -0
- package/test/node_modules/@noble/curves/esm/abstract/weierstrass.js.map +1 -0
- package/test/node_modules/@noble/curves/esm/bls12-381.d.ts +67 -0
- package/test/node_modules/@noble/curves/esm/bls12-381.d.ts.map +1 -0
- package/test/node_modules/@noble/curves/esm/bls12-381.js +1229 -0
- package/test/node_modules/@noble/curves/esm/bls12-381.js.map +1 -0
- package/test/node_modules/@noble/curves/esm/bn254.d.ts +9 -0
- package/test/node_modules/@noble/curves/esm/bn254.d.ts.map +1 -0
- package/test/node_modules/@noble/curves/esm/bn254.js +23 -0
- package/test/node_modules/@noble/curves/esm/bn254.js.map +1 -0
- package/test/node_modules/@noble/curves/esm/ed25519.d.ts +78 -0
- package/test/node_modules/@noble/curves/esm/ed25519.d.ts.map +1 -0
- package/test/node_modules/@noble/curves/esm/ed25519.js +440 -0
- package/test/node_modules/@noble/curves/esm/ed25519.js.map +1 -0
- package/test/node_modules/@noble/curves/esm/ed448.d.ts +67 -0
- package/test/node_modules/@noble/curves/esm/ed448.d.ts.map +1 -0
- package/test/node_modules/@noble/curves/esm/ed448.js +401 -0
- package/test/node_modules/@noble/curves/esm/ed448.js.map +1 -0
- package/test/node_modules/@noble/curves/esm/index.d.ts +2 -0
- package/test/node_modules/@noble/curves/esm/index.d.ts.map +1 -0
- package/test/node_modules/@noble/curves/esm/index.js +3 -0
- package/test/node_modules/@noble/curves/esm/index.js.map +1 -0
- package/test/node_modules/@noble/curves/esm/jubjub.d.ts +9 -0
- package/test/node_modules/@noble/curves/esm/jubjub.d.ts.map +1 -0
- package/test/node_modules/@noble/curves/esm/jubjub.js +54 -0
- package/test/node_modules/@noble/curves/esm/jubjub.js.map +1 -0
- package/test/node_modules/@noble/curves/esm/p256.d.ts +105 -0
- package/test/node_modules/@noble/curves/esm/p256.d.ts.map +1 -0
- package/test/node_modules/@noble/curves/esm/p256.js +42 -0
- package/test/node_modules/@noble/curves/esm/p256.js.map +1 -0
- package/test/node_modules/@noble/curves/esm/p384.d.ts +105 -0
- package/test/node_modules/@noble/curves/esm/p384.d.ts.map +1 -0
- package/test/node_modules/@noble/curves/esm/p384.js +46 -0
- package/test/node_modules/@noble/curves/esm/p384.js.map +1 -0
- package/test/node_modules/@noble/curves/esm/p521.d.ts +105 -0
- package/test/node_modules/@noble/curves/esm/p521.d.ts.map +1 -0
- package/test/node_modules/@noble/curves/esm/p521.js +53 -0
- package/test/node_modules/@noble/curves/esm/p521.js.map +1 -0
- package/test/node_modules/@noble/curves/esm/package.json +4 -0
- package/test/node_modules/@noble/curves/esm/pasta.d.ts +5 -0
- package/test/node_modules/@noble/curves/esm/pasta.d.ts.map +1 -0
- package/test/node_modules/@noble/curves/esm/pasta.js +30 -0
- package/test/node_modules/@noble/curves/esm/pasta.js.map +1 -0
- package/test/node_modules/@noble/curves/esm/secp256k1.d.ts +93 -0
- package/test/node_modules/@noble/curves/esm/secp256k1.d.ts.map +1 -0
- package/test/node_modules/@noble/curves/esm/secp256k1.js +254 -0
- package/test/node_modules/@noble/curves/esm/secp256k1.js.map +1 -0
- package/test/node_modules/@noble/curves/index.d.ts +1 -0
- package/test/node_modules/@noble/curves/index.d.ts.map +1 -0
- package/test/node_modules/@noble/curves/index.js +3 -0
- package/test/node_modules/@noble/curves/index.js.map +1 -0
- package/test/node_modules/@noble/curves/jubjub.d.ts +9 -0
- package/test/node_modules/@noble/curves/jubjub.d.ts.map +1 -0
- package/test/node_modules/@noble/curves/jubjub.js +59 -0
- package/test/node_modules/@noble/curves/jubjub.js.map +1 -0
- package/test/node_modules/@noble/curves/p256.d.ts +105 -0
- package/test/node_modules/@noble/curves/p256.d.ts.map +1 -0
- package/test/node_modules/@noble/curves/p256.js +45 -0
- package/test/node_modules/@noble/curves/p256.js.map +1 -0
- package/test/node_modules/@noble/curves/p384.d.ts +105 -0
- package/test/node_modules/@noble/curves/p384.d.ts.map +1 -0
- package/test/node_modules/@noble/curves/p384.js +49 -0
- package/test/node_modules/@noble/curves/p384.js.map +1 -0
- package/test/node_modules/@noble/curves/p521.d.ts +105 -0
- package/test/node_modules/@noble/curves/p521.d.ts.map +1 -0
- package/test/node_modules/@noble/curves/p521.js +56 -0
- package/test/node_modules/@noble/curves/p521.js.map +1 -0
- package/test/node_modules/@noble/curves/package.json +159 -0
- package/test/node_modules/@noble/curves/pasta.d.ts +5 -0
- package/test/node_modules/@noble/curves/pasta.d.ts.map +1 -0
- package/test/node_modules/@noble/curves/pasta.js +33 -0
- package/test/node_modules/@noble/curves/pasta.js.map +1 -0
- package/test/node_modules/@noble/curves/secp256k1.d.ts +93 -0
- package/test/node_modules/@noble/curves/secp256k1.d.ts.map +1 -0
- package/test/node_modules/@noble/curves/secp256k1.js +257 -0
- package/test/node_modules/@noble/curves/secp256k1.js.map +1 -0
- package/test/node_modules/@noble/curves/src/_shortw_utils.ts +20 -0
- package/test/node_modules/@noble/curves/src/abstract/bls.ts +502 -0
- package/test/node_modules/@noble/curves/src/abstract/curve.ts +203 -0
- package/test/node_modules/@noble/curves/src/abstract/edwards.ts +514 -0
- package/test/node_modules/@noble/curves/src/abstract/hash-to-curve.ts +231 -0
- package/test/node_modules/@noble/curves/src/abstract/modular.ts +484 -0
- package/test/node_modules/@noble/curves/src/abstract/montgomery.ts +187 -0
- package/test/node_modules/@noble/curves/src/abstract/poseidon.ts +118 -0
- package/test/node_modules/@noble/curves/src/abstract/utils.ts +319 -0
- package/test/node_modules/@noble/curves/src/abstract/weierstrass.ts +1237 -0
- package/test/node_modules/@noble/curves/src/bls12-381.ts +1410 -0
- package/test/node_modules/@noble/curves/src/bn254.ts +22 -0
- package/test/node_modules/@noble/curves/src/ed25519.ts +505 -0
- package/test/node_modules/@noble/curves/src/ed448.ts +480 -0
- package/test/node_modules/@noble/curves/src/index.ts +1 -0
- package/test/node_modules/@noble/curves/src/jubjub.ts +58 -0
- package/test/node_modules/@noble/curves/src/p256.ts +48 -0
- package/test/node_modules/@noble/curves/src/p384.ts +52 -0
- package/test/node_modules/@noble/curves/src/p521.ts +68 -0
- package/test/node_modules/@noble/curves/src/package.json +3 -0
- package/test/node_modules/@noble/curves/src/pasta.ts +31 -0
- package/test/node_modules/@noble/curves/src/secp256k1.ts +274 -0
- package/test/node_modules/@noble/hashes/LICENSE +21 -0
- package/test/node_modules/@noble/hashes/README.md +558 -0
- package/test/node_modules/@noble/hashes/_assert.d.ts +24 -0
- package/test/node_modules/@noble/hashes/_assert.js +51 -0
- package/test/node_modules/@noble/hashes/_assert.js.map +1 -0
- package/test/node_modules/@noble/hashes/_blake.d.ts +28 -0
- package/test/node_modules/@noble/hashes/_blake.js +124 -0
- package/test/node_modules/@noble/hashes/_blake.js.map +1 -0
- package/test/node_modules/@noble/hashes/_md.d.ts +30 -0
- package/test/node_modules/@noble/hashes/_md.js +128 -0
- package/test/node_modules/@noble/hashes/_md.js.map +1 -0
- package/test/node_modules/@noble/hashes/_u64.d.ts +55 -0
- package/test/node_modules/@noble/hashes/_u64.js +85 -0
- package/test/node_modules/@noble/hashes/_u64.js.map +1 -0
- package/test/node_modules/@noble/hashes/argon2.d.ts +17 -0
- package/test/node_modules/@noble/hashes/argon2.js +303 -0
- package/test/node_modules/@noble/hashes/argon2.js.map +1 -0
- package/test/node_modules/@noble/hashes/blake2b.d.ts +54 -0
- package/test/node_modules/@noble/hashes/blake2b.js +192 -0
- package/test/node_modules/@noble/hashes/blake2b.js.map +1 -0
- package/test/node_modules/@noble/hashes/blake2s.d.ts +48 -0
- package/test/node_modules/@noble/hashes/blake2s.js +123 -0
- package/test/node_modules/@noble/hashes/blake2s.js.map +1 -0
- package/test/node_modules/@noble/hashes/blake3.d.ts +47 -0
- package/test/node_modules/@noble/hashes/blake3.js +243 -0
- package/test/node_modules/@noble/hashes/blake3.js.map +1 -0
- package/test/node_modules/@noble/hashes/crypto.d.ts +2 -0
- package/test/node_modules/@noble/hashes/crypto.js +5 -0
- package/test/node_modules/@noble/hashes/crypto.js.map +1 -0
- package/test/node_modules/@noble/hashes/cryptoNode.d.ts +2 -0
- package/test/node_modules/@noble/hashes/cryptoNode.js +10 -0
- package/test/node_modules/@noble/hashes/cryptoNode.js.map +1 -0
- package/test/node_modules/@noble/hashes/eskdf.d.ts +47 -0
- package/test/node_modules/@noble/hashes/eskdf.js +162 -0
- package/test/node_modules/@noble/hashes/eskdf.js.map +1 -0
- package/test/node_modules/@noble/hashes/esm/_assert.js +42 -0
- package/test/node_modules/@noble/hashes/esm/_assert.js.map +1 -0
- package/test/node_modules/@noble/hashes/esm/_blake.js +120 -0
- package/test/node_modules/@noble/hashes/esm/_blake.js.map +1 -0
- package/test/node_modules/@noble/hashes/esm/_md.js +122 -0
- package/test/node_modules/@noble/hashes/esm/_md.js.map +1 -0
- package/test/node_modules/@noble/hashes/esm/_u64.js +62 -0
- package/test/node_modules/@noble/hashes/esm/_u64.js.map +1 -0
- package/test/node_modules/@noble/hashes/esm/argon2.js +297 -0
- package/test/node_modules/@noble/hashes/esm/argon2.js.map +1 -0
- package/test/node_modules/@noble/hashes/esm/blake2b.js +189 -0
- package/test/node_modules/@noble/hashes/esm/blake2b.js.map +1 -0
- package/test/node_modules/@noble/hashes/esm/blake2s.js +119 -0
- package/test/node_modules/@noble/hashes/esm/blake2s.js.map +1 -0
- package/test/node_modules/@noble/hashes/esm/blake3.js +240 -0
- package/test/node_modules/@noble/hashes/esm/blake3.js.map +1 -0
- package/test/node_modules/@noble/hashes/esm/crypto.js +2 -0
- package/test/node_modules/@noble/hashes/esm/crypto.js.map +1 -0
- package/test/node_modules/@noble/hashes/esm/cryptoNode.js +7 -0
- package/test/node_modules/@noble/hashes/esm/cryptoNode.js.map +1 -0
- package/test/node_modules/@noble/hashes/esm/eskdf.js +155 -0
- package/test/node_modules/@noble/hashes/esm/eskdf.js.map +1 -0
- package/test/node_modules/@noble/hashes/esm/hkdf.js +72 -0
- package/test/node_modules/@noble/hashes/esm/hkdf.js.map +1 -0
- package/test/node_modules/@noble/hashes/esm/hmac.js +77 -0
- package/test/node_modules/@noble/hashes/esm/hmac.js.map +1 -0
- package/test/node_modules/@noble/hashes/esm/index.js +3 -0
- package/test/node_modules/@noble/hashes/esm/index.js.map +1 -0
- package/test/node_modules/@noble/hashes/esm/package.json +10 -0
- package/test/node_modules/@noble/hashes/esm/pbkdf2.js +86 -0
- package/test/node_modules/@noble/hashes/esm/pbkdf2.js.map +1 -0
- package/test/node_modules/@noble/hashes/esm/ripemd160.js +102 -0
- package/test/node_modules/@noble/hashes/esm/ripemd160.js.map +1 -0
- package/test/node_modules/@noble/hashes/esm/scrypt.js +224 -0
- package/test/node_modules/@noble/hashes/esm/scrypt.js.map +1 -0
- package/test/node_modules/@noble/hashes/esm/sha1.js +80 -0
- package/test/node_modules/@noble/hashes/esm/sha1.js.map +1 -0
- package/test/node_modules/@noble/hashes/esm/sha2.js +4 -0
- package/test/node_modules/@noble/hashes/esm/sha2.js.map +1 -0
- package/test/node_modules/@noble/hashes/esm/sha256.js +123 -0
- package/test/node_modules/@noble/hashes/esm/sha256.js.map +1 -0
- package/test/node_modules/@noble/hashes/esm/sha3-addons.js +356 -0
- package/test/node_modules/@noble/hashes/esm/sha3-addons.js.map +1 -0
- package/test/node_modules/@noble/hashes/esm/sha3.js +214 -0
- package/test/node_modules/@noble/hashes/esm/sha3.js.map +1 -0
- package/test/node_modules/@noble/hashes/esm/sha512.js +231 -0
- package/test/node_modules/@noble/hashes/esm/sha512.js.map +1 -0
- package/test/node_modules/@noble/hashes/esm/utils.js +187 -0
- package/test/node_modules/@noble/hashes/esm/utils.js.map +1 -0
- package/test/node_modules/@noble/hashes/hkdf.d.ts +27 -0
- package/test/node_modules/@noble/hashes/hkdf.js +78 -0
- package/test/node_modules/@noble/hashes/hkdf.js.map +1 -0
- package/test/node_modules/@noble/hashes/hmac.d.ts +26 -0
- package/test/node_modules/@noble/hashes/hmac.js +82 -0
- package/test/node_modules/@noble/hashes/hmac.js.map +1 -0
- package/test/node_modules/@noble/hashes/index.d.ts +1 -0
- package/test/node_modules/@noble/hashes/index.js +3 -0
- package/test/node_modules/@noble/hashes/index.js.map +1 -0
- package/test/node_modules/@noble/hashes/package.json +179 -0
- package/test/node_modules/@noble/hashes/pbkdf2.d.ts +16 -0
- package/test/node_modules/@noble/hashes/pbkdf2.js +91 -0
- package/test/node_modules/@noble/hashes/pbkdf2.js.map +1 -0
- package/test/node_modules/@noble/hashes/ripemd160.d.ts +25 -0
- package/test/node_modules/@noble/hashes/ripemd160.js +106 -0
- package/test/node_modules/@noble/hashes/ripemd160.js.map +1 -0
- package/test/node_modules/@noble/hashes/scrypt.d.ts +30 -0
- package/test/node_modules/@noble/hashes/scrypt.js +229 -0
- package/test/node_modules/@noble/hashes/scrypt.js.map +1 -0
- package/test/node_modules/@noble/hashes/sha1.d.ts +22 -0
- package/test/node_modules/@noble/hashes/sha1.js +83 -0
- package/test/node_modules/@noble/hashes/sha1.js.map +1 -0
- package/test/node_modules/@noble/hashes/sha2.d.ts +3 -0
- package/test/node_modules/@noble/hashes/sha2.js +13 -0
- package/test/node_modules/@noble/hashes/sha2.js.map +1 -0
- package/test/node_modules/@noble/hashes/sha256.d.ts +35 -0
- package/test/node_modules/@noble/hashes/sha256.js +126 -0
- package/test/node_modules/@noble/hashes/sha256.js.map +1 -0
- package/test/node_modules/@noble/hashes/sha3-addons.d.ts +154 -0
- package/test/node_modules/@noble/hashes/sha3-addons.js +360 -0
- package/test/node_modules/@noble/hashes/sha3-addons.js.map +1 -0
- package/test/node_modules/@noble/hashes/sha3.d.ts +98 -0
- package/test/node_modules/@noble/hashes/sha3.js +219 -0
- package/test/node_modules/@noble/hashes/sha3.js.map +1 -0
- package/test/node_modules/@noble/hashes/sha512.d.ts +67 -0
- package/test/node_modules/@noble/hashes/sha512.js +235 -0
- package/test/node_modules/@noble/hashes/sha512.js.map +1 -0
- package/test/node_modules/@noble/hashes/src/_assert.ts +51 -0
- package/test/node_modules/@noble/hashes/src/_blake.ts +134 -0
- package/test/node_modules/@noble/hashes/src/_md.ts +127 -0
- package/test/node_modules/@noble/hashes/src/_u64.ts +77 -0
- package/test/node_modules/@noble/hashes/src/argon2.ts +374 -0
- package/test/node_modules/@noble/hashes/src/blake2b.ts +205 -0
- package/test/node_modules/@noble/hashes/src/blake2s.ts +138 -0
- package/test/node_modules/@noble/hashes/src/blake3.ts +268 -0
- package/test/node_modules/@noble/hashes/src/crypto.ts +5 -0
- package/test/node_modules/@noble/hashes/src/cryptoNode.ts +7 -0
- package/test/node_modules/@noble/hashes/src/eskdf.ts +183 -0
- package/test/node_modules/@noble/hashes/src/hkdf.ts +79 -0
- package/test/node_modules/@noble/hashes/src/hmac.ts +81 -0
- package/test/node_modules/@noble/hashes/src/index.ts +1 -0
- package/test/node_modules/@noble/hashes/src/pbkdf2.ts +97 -0
- package/test/node_modules/@noble/hashes/src/ripemd160.ts +108 -0
- package/test/node_modules/@noble/hashes/src/scrypt.ts +241 -0
- package/test/node_modules/@noble/hashes/src/sha1.ts +80 -0
- package/test/node_modules/@noble/hashes/src/sha2.ts +3 -0
- package/test/node_modules/@noble/hashes/src/sha256.ts +129 -0
- package/test/node_modules/@noble/hashes/src/sha3-addons.ts +423 -0
- package/test/node_modules/@noble/hashes/src/sha3.ts +229 -0
- package/test/node_modules/@noble/hashes/src/sha512.ts +246 -0
- package/test/node_modules/@noble/hashes/src/utils.ts +256 -0
- package/test/node_modules/@noble/hashes/utils.d.ts +96 -0
- package/test/node_modules/@noble/hashes/utils.js +211 -0
- package/test/node_modules/@noble/hashes/utils.js.map +1 -0
- package/test/node_modules/@pkgjs/parseargs/.editorconfig +14 -0
- package/test/node_modules/@pkgjs/parseargs/CHANGELOG.md +147 -0
- package/test/node_modules/@pkgjs/parseargs/LICENSE +201 -0
- package/test/node_modules/@pkgjs/parseargs/README.md +413 -0
- package/test/node_modules/@pkgjs/parseargs/examples/is-default-value.js +25 -0
- package/test/node_modules/@pkgjs/parseargs/examples/limit-long-syntax.js +35 -0
- package/test/node_modules/@pkgjs/parseargs/examples/negate.js +43 -0
- package/test/node_modules/@pkgjs/parseargs/examples/no-repeated-options.js +31 -0
- package/test/node_modules/@pkgjs/parseargs/examples/ordered-options.mjs +41 -0
- package/test/node_modules/@pkgjs/parseargs/examples/simple-hard-coded.js +26 -0
- package/test/node_modules/@pkgjs/parseargs/index.js +396 -0
- package/test/node_modules/@pkgjs/parseargs/internal/errors.js +47 -0
- package/test/node_modules/@pkgjs/parseargs/internal/primordials.js +393 -0
- package/test/node_modules/@pkgjs/parseargs/internal/util.js +14 -0
- package/test/node_modules/@pkgjs/parseargs/internal/validators.js +89 -0
- package/test/node_modules/@pkgjs/parseargs/package.json +36 -0
- package/test/node_modules/@pkgjs/parseargs/utils.js +198 -0
- package/test/node_modules/@scure/base/LICENSE +21 -0
- package/test/node_modules/@scure/base/README.md +214 -0
- package/test/node_modules/@scure/base/index.ts +616 -0
- package/test/node_modules/@scure/base/lib/esm/index.d.ts +132 -0
- package/test/node_modules/@scure/base/lib/esm/index.d.ts.map +1 -0
- package/test/node_modules/@scure/base/lib/esm/index.js +489 -0
- package/test/node_modules/@scure/base/lib/esm/index.js.map +1 -0
- package/test/node_modules/@scure/base/lib/esm/package.json +1 -0
- package/test/node_modules/@scure/base/lib/index.d.ts +132 -0
- package/test/node_modules/@scure/base/lib/index.d.ts.map +1 -0
- package/test/node_modules/@scure/base/lib/index.js +496 -0
- package/test/node_modules/@scure/base/lib/index.js.map +1 -0
- package/test/node_modules/@scure/base/package.json +64 -0
- package/test/node_modules/@scure/bip32/LICENSE +21 -0
- package/test/node_modules/@scure/bip32/README.md +113 -0
- package/test/node_modules/@scure/bip32/index.ts +308 -0
- package/test/node_modules/@scure/bip32/lib/esm/index.js +269 -0
- package/test/node_modules/@scure/bip32/lib/esm/index.js.map +1 -0
- package/test/node_modules/@scure/bip32/lib/esm/package.json +4 -0
- package/test/node_modules/@scure/bip32/lib/index.d.ts +50 -0
- package/test/node_modules/@scure/bip32/lib/index.js +273 -0
- package/test/node_modules/@scure/bip32/lib/index.js.map +1 -0
- package/test/node_modules/@scure/bip32/package.json +75 -0
- package/test/node_modules/@scure/bip39/LICENSE +21 -0
- package/test/node_modules/@scure/bip39/README.md +101 -0
- package/test/node_modules/@scure/bip39/esm/index.js +134 -0
- package/test/node_modules/@scure/bip39/esm/package.json +3 -0
- package/test/node_modules/@scure/bip39/esm/wordlists/czech.js +2048 -0
- package/test/node_modules/@scure/bip39/esm/wordlists/english.js +2048 -0
- package/test/node_modules/@scure/bip39/esm/wordlists/french.js +2048 -0
- package/test/node_modules/@scure/bip39/esm/wordlists/italian.js +2048 -0
- package/test/node_modules/@scure/bip39/esm/wordlists/japanese.js +2048 -0
- package/test/node_modules/@scure/bip39/esm/wordlists/korean.js +2048 -0
- package/test/node_modules/@scure/bip39/esm/wordlists/portuguese.js +2048 -0
- package/test/node_modules/@scure/bip39/esm/wordlists/simplified-chinese.js +2048 -0
- package/test/node_modules/@scure/bip39/esm/wordlists/spanish.js +2048 -0
- package/test/node_modules/@scure/bip39/esm/wordlists/traditional-chinese.js +2048 -0
- package/test/node_modules/@scure/bip39/index.d.ts +64 -0
- package/test/node_modules/@scure/bip39/index.js +143 -0
- package/test/node_modules/@scure/bip39/package.json +123 -0
- package/test/node_modules/@scure/bip39/src/index.ts +146 -0
- package/test/node_modules/@scure/bip39/wordlists/czech.d.ts +2 -0
- package/test/node_modules/@scure/bip39/wordlists/czech.js +2051 -0
- package/test/node_modules/@scure/bip39/wordlists/english.d.ts +2 -0
- package/test/node_modules/@scure/bip39/wordlists/english.js +2051 -0
- package/test/node_modules/@scure/bip39/wordlists/french.d.ts +2 -0
- package/test/node_modules/@scure/bip39/wordlists/french.js +2051 -0
- package/test/node_modules/@scure/bip39/wordlists/italian.d.ts +2 -0
- package/test/node_modules/@scure/bip39/wordlists/italian.js +2051 -0
- package/test/node_modules/@scure/bip39/wordlists/japanese.d.ts +2 -0
- package/test/node_modules/@scure/bip39/wordlists/japanese.js +2051 -0
- package/test/node_modules/@scure/bip39/wordlists/korean.d.ts +2 -0
- package/test/node_modules/@scure/bip39/wordlists/korean.js +2051 -0
- package/test/node_modules/@scure/bip39/wordlists/portuguese.d.ts +2 -0
- package/test/node_modules/@scure/bip39/wordlists/portuguese.js +2051 -0
- package/test/node_modules/@scure/bip39/wordlists/simplified-chinese.d.ts +2 -0
- package/test/node_modules/@scure/bip39/wordlists/simplified-chinese.js +2051 -0
- package/test/node_modules/@scure/bip39/wordlists/spanish.d.ts +2 -0
- package/test/node_modules/@scure/bip39/wordlists/spanish.js +2051 -0
- package/test/node_modules/@scure/bip39/wordlists/traditional-chinese.d.ts +2 -0
- package/test/node_modules/@scure/bip39/wordlists/traditional-chinese.js +2051 -0
- package/test/node_modules/ansi-colors/LICENSE +21 -0
- package/test/node_modules/ansi-colors/README.md +315 -0
- package/test/node_modules/ansi-colors/index.js +184 -0
- package/test/node_modules/ansi-colors/package.json +129 -0
- package/test/node_modules/ansi-colors/symbols.js +69 -0
- package/test/node_modules/ansi-colors/types/index.d.ts +235 -0
- package/test/node_modules/ansi-regex/index.d.ts +33 -0
- package/test/node_modules/ansi-regex/index.js +10 -0
- package/test/node_modules/ansi-regex/license +9 -0
- package/test/node_modules/ansi-regex/package.json +61 -0
- package/test/node_modules/ansi-regex/readme.md +60 -0
- package/test/node_modules/ansi-styles/index.d.ts +345 -0
- package/test/node_modules/ansi-styles/index.js +163 -0
- package/test/node_modules/ansi-styles/license +9 -0
- package/test/node_modules/ansi-styles/package.json +56 -0
- package/test/node_modules/ansi-styles/readme.md +152 -0
- package/test/node_modules/anymatch/LICENSE +15 -0
- package/test/node_modules/anymatch/README.md +87 -0
- package/test/node_modules/anymatch/index.d.ts +20 -0
- package/test/node_modules/anymatch/index.js +104 -0
- package/test/node_modules/anymatch/package.json +48 -0
- package/test/node_modules/argparse/CHANGELOG.md +216 -0
- package/test/node_modules/argparse/LICENSE +254 -0
- package/test/node_modules/argparse/README.md +84 -0
- package/test/node_modules/argparse/argparse.js +3707 -0
- package/test/node_modules/argparse/lib/sub.js +67 -0
- package/test/node_modules/argparse/lib/textwrap.js +440 -0
- package/test/node_modules/argparse/package.json +31 -0
- package/test/node_modules/asap/CHANGES.md +70 -0
- package/test/node_modules/asap/LICENSE.md +21 -0
- package/test/node_modules/asap/README.md +237 -0
- package/test/node_modules/asap/asap.js +65 -0
- package/test/node_modules/asap/browser-asap.js +66 -0
- package/test/node_modules/asap/browser-raw.js +223 -0
- package/test/node_modules/asap/package.json +58 -0
- package/test/node_modules/asap/raw.js +101 -0
- package/test/node_modules/assertion-error/LICENSE +21 -0
- package/test/node_modules/assertion-error/README.md +68 -0
- package/test/node_modules/assertion-error/index.d.ts +27 -0
- package/test/node_modules/assertion-error/index.js +60 -0
- package/test/node_modules/assertion-error/package.json +32 -0
- package/test/node_modules/asynckit/LICENSE +21 -0
- package/test/node_modules/asynckit/README.md +233 -0
- package/test/node_modules/asynckit/bench.js +76 -0
- package/test/node_modules/asynckit/index.js +6 -0
- package/test/node_modules/asynckit/lib/abort.js +29 -0
- package/test/node_modules/asynckit/lib/async.js +34 -0
- package/test/node_modules/asynckit/lib/defer.js +26 -0
- package/test/node_modules/asynckit/lib/iterate.js +75 -0
- package/test/node_modules/asynckit/lib/readable_asynckit.js +91 -0
- package/test/node_modules/asynckit/lib/readable_parallel.js +25 -0
- package/test/node_modules/asynckit/lib/readable_serial.js +25 -0
- package/test/node_modules/asynckit/lib/readable_serial_ordered.js +29 -0
- package/test/node_modules/asynckit/lib/state.js +37 -0
- package/test/node_modules/asynckit/lib/streamify.js +141 -0
- package/test/node_modules/asynckit/lib/terminator.js +29 -0
- package/test/node_modules/asynckit/package.json +63 -0
- package/test/node_modules/asynckit/parallel.js +43 -0
- package/test/node_modules/asynckit/serial.js +17 -0
- package/test/node_modules/asynckit/serialOrdered.js +75 -0
- package/test/node_modules/asynckit/stream.js +21 -0
- package/test/node_modules/balanced-match/.github/FUNDING.yml +2 -0
- package/test/node_modules/balanced-match/LICENSE.md +21 -0
- package/test/node_modules/balanced-match/README.md +97 -0
- package/test/node_modules/balanced-match/index.js +62 -0
- package/test/node_modules/balanced-match/package.json +48 -0
- package/test/node_modules/bdo-js/README.md +35 -0
- package/test/node_modules/bdo-js/bdo.cjs +165 -0
- package/test/node_modules/bdo-js/bdo.js +171 -0
- package/test/node_modules/bdo-js/package.json +24 -0
- package/test/node_modules/binary-extensions/binary-extensions.json +263 -0
- package/test/node_modules/binary-extensions/binary-extensions.json.d.ts +3 -0
- package/test/node_modules/binary-extensions/index.d.ts +14 -0
- package/test/node_modules/binary-extensions/index.js +1 -0
- package/test/node_modules/binary-extensions/license +10 -0
- package/test/node_modules/binary-extensions/package.json +40 -0
- package/test/node_modules/binary-extensions/readme.md +25 -0
- package/test/node_modules/brace-expansion/.github/FUNDING.yml +2 -0
- package/test/node_modules/brace-expansion/LICENSE +21 -0
- package/test/node_modules/brace-expansion/README.md +135 -0
- package/test/node_modules/brace-expansion/index.js +203 -0
- package/test/node_modules/brace-expansion/package.json +46 -0
- package/test/node_modules/braces/LICENSE +21 -0
- package/test/node_modules/braces/README.md +586 -0
- package/test/node_modules/braces/index.js +170 -0
- package/test/node_modules/braces/lib/compile.js +60 -0
- package/test/node_modules/braces/lib/constants.js +57 -0
- package/test/node_modules/braces/lib/expand.js +113 -0
- package/test/node_modules/braces/lib/parse.js +331 -0
- package/test/node_modules/braces/lib/stringify.js +32 -0
- package/test/node_modules/braces/lib/utils.js +122 -0
- package/test/node_modules/braces/package.json +77 -0
- package/test/node_modules/browser-stdout/LICENSE +5 -0
- package/test/node_modules/browser-stdout/README.md +40 -0
- package/test/node_modules/browser-stdout/index.js +25 -0
- package/test/node_modules/browser-stdout/package.json +15 -0
- package/test/node_modules/call-bind-apply-helpers/.eslintrc +17 -0
- package/test/node_modules/call-bind-apply-helpers/.github/FUNDING.yml +12 -0
- package/test/node_modules/call-bind-apply-helpers/.nycrc +9 -0
- package/test/node_modules/call-bind-apply-helpers/CHANGELOG.md +30 -0
- package/test/node_modules/call-bind-apply-helpers/LICENSE +21 -0
- package/test/node_modules/call-bind-apply-helpers/README.md +62 -0
- package/test/node_modules/call-bind-apply-helpers/actualApply.d.ts +1 -0
- package/test/node_modules/call-bind-apply-helpers/actualApply.js +10 -0
- package/test/node_modules/call-bind-apply-helpers/applyBind.d.ts +19 -0
- package/test/node_modules/call-bind-apply-helpers/applyBind.js +10 -0
- package/test/node_modules/call-bind-apply-helpers/functionApply.d.ts +1 -0
- package/test/node_modules/call-bind-apply-helpers/functionApply.js +4 -0
- package/test/node_modules/call-bind-apply-helpers/functionCall.d.ts +1 -0
- package/test/node_modules/call-bind-apply-helpers/functionCall.js +4 -0
- package/test/node_modules/call-bind-apply-helpers/index.d.ts +64 -0
- package/test/node_modules/call-bind-apply-helpers/index.js +15 -0
- package/test/node_modules/call-bind-apply-helpers/package.json +85 -0
- package/test/node_modules/call-bind-apply-helpers/reflectApply.d.ts +3 -0
- package/test/node_modules/call-bind-apply-helpers/reflectApply.js +4 -0
- package/test/node_modules/call-bind-apply-helpers/test/index.js +63 -0
- package/test/node_modules/call-bind-apply-helpers/tsconfig.json +9 -0
- package/test/node_modules/call-bound/.eslintrc +13 -0
- package/test/node_modules/call-bound/.github/FUNDING.yml +12 -0
- package/test/node_modules/call-bound/.nycrc +9 -0
- package/test/node_modules/call-bound/CHANGELOG.md +42 -0
- package/test/node_modules/call-bound/LICENSE +21 -0
- package/test/node_modules/call-bound/README.md +53 -0
- package/test/node_modules/call-bound/index.d.ts +94 -0
- package/test/node_modules/call-bound/index.js +19 -0
- package/test/node_modules/call-bound/package.json +99 -0
- package/test/node_modules/call-bound/test/index.js +61 -0
- package/test/node_modules/call-bound/tsconfig.json +10 -0
- package/test/node_modules/camelcase/index.d.ts +103 -0
- package/test/node_modules/camelcase/index.js +113 -0
- package/test/node_modules/camelcase/license +9 -0
- package/test/node_modules/camelcase/package.json +44 -0
- package/test/node_modules/camelcase/readme.md +144 -0
- package/test/node_modules/chai/.prettierrc.json +10 -0
- package/test/node_modules/chai/CODEOWNERS +1 -0
- package/test/node_modules/chai/CODE_OF_CONDUCT.md +58 -0
- package/test/node_modules/chai/CONTRIBUTING.md +218 -0
- package/test/node_modules/chai/History.md +1059 -0
- package/test/node_modules/chai/LICENSE +21 -0
- package/test/node_modules/chai/README.md +154 -0
- package/test/node_modules/chai/ReleaseNotes.md +737 -0
- package/test/node_modules/chai/chai.js +4351 -0
- package/test/node_modules/chai/eslint.config.js +26 -0
- package/test/node_modules/chai/index.js +1 -0
- package/test/node_modules/chai/lib/chai/assertion.js +180 -0
- package/test/node_modules/chai/lib/chai/config.js +112 -0
- package/test/node_modules/chai/lib/chai/core/assertions.js +4157 -0
- package/test/node_modules/chai/lib/chai/interface/assert.js +3228 -0
- package/test/node_modules/chai/lib/chai/interface/expect.js +59 -0
- package/test/node_modules/chai/lib/chai/interface/should.js +227 -0
- package/test/node_modules/chai/lib/chai/utils/addChainableMethod.js +146 -0
- package/test/node_modules/chai/lib/chai/utils/addLengthGuard.js +73 -0
- package/test/node_modules/chai/lib/chai/utils/addMethod.js +66 -0
- package/test/node_modules/chai/lib/chai/utils/addProperty.js +70 -0
- package/test/node_modules/chai/lib/chai/utils/compareByInspect.js +26 -0
- package/test/node_modules/chai/lib/chai/utils/expectTypes.js +58 -0
- package/test/node_modules/chai/lib/chai/utils/flag.js +33 -0
- package/test/node_modules/chai/lib/chai/utils/getActual.js +20 -0
- package/test/node_modules/chai/lib/chai/utils/getMessage.js +52 -0
- package/test/node_modules/chai/lib/chai/utils/getOperator.js +58 -0
- package/test/node_modules/chai/lib/chai/utils/getOwnEnumerableProperties.js +24 -0
- package/test/node_modules/chai/lib/chai/utils/getOwnEnumerablePropertySymbols.js +26 -0
- package/test/node_modules/chai/lib/chai/utils/getProperties.js +38 -0
- package/test/node_modules/chai/lib/chai/utils/index.js +118 -0
- package/test/node_modules/chai/lib/chai/utils/inspect.js +31 -0
- package/test/node_modules/chai/lib/chai/utils/isNaN.js +7 -0
- package/test/node_modules/chai/lib/chai/utils/isProxyEnabled.js +26 -0
- package/test/node_modules/chai/lib/chai/utils/objDisplay.js +47 -0
- package/test/node_modules/chai/lib/chai/utils/overwriteChainableMethod.js +69 -0
- package/test/node_modules/chai/lib/chai/utils/overwriteMethod.js +90 -0
- package/test/node_modules/chai/lib/chai/utils/overwriteProperty.js +89 -0
- package/test/node_modules/chai/lib/chai/utils/proxify.js +157 -0
- package/test/node_modules/chai/lib/chai/utils/test.js +24 -0
- package/test/node_modules/chai/lib/chai/utils/transferFlags.js +48 -0
- package/test/node_modules/chai/lib/chai/utils/type-detect.js +20 -0
- package/test/node_modules/chai/lib/chai.js +66 -0
- package/test/node_modules/chai/package.json +67 -0
- package/test/node_modules/chai/register-assert.js +3 -0
- package/test/node_modules/chai/register-expect.js +3 -0
- package/test/node_modules/chai/register-should.js +3 -0
- package/test/node_modules/chai/web-test-runner.config.js +20 -0
- package/test/node_modules/chalk/index.d.ts +415 -0
- package/test/node_modules/chalk/license +9 -0
- package/test/node_modules/chalk/node_modules/supports-color/browser.js +5 -0
- package/test/node_modules/chalk/node_modules/supports-color/index.js +135 -0
- package/test/node_modules/chalk/node_modules/supports-color/license +9 -0
- package/test/node_modules/chalk/node_modules/supports-color/package.json +53 -0
- package/test/node_modules/chalk/node_modules/supports-color/readme.md +76 -0
- package/test/node_modules/chalk/package.json +68 -0
- package/test/node_modules/chalk/readme.md +341 -0
- package/test/node_modules/chalk/source/index.js +229 -0
- package/test/node_modules/chalk/source/templates.js +134 -0
- package/test/node_modules/chalk/source/util.js +39 -0
- package/test/node_modules/check-error/LICENSE +19 -0
- package/test/node_modules/check-error/README.md +144 -0
- package/test/node_modules/check-error/index.js +135 -0
- package/test/node_modules/check-error/package.json +66 -0
- package/test/node_modules/chokidar/LICENSE +21 -0
- package/test/node_modules/chokidar/README.md +308 -0
- package/test/node_modules/chokidar/index.js +973 -0
- package/test/node_modules/chokidar/lib/constants.js +66 -0
- package/test/node_modules/chokidar/lib/fsevents-handler.js +526 -0
- package/test/node_modules/chokidar/lib/nodefs-handler.js +654 -0
- package/test/node_modules/chokidar/package.json +70 -0
- package/test/node_modules/chokidar/types/index.d.ts +192 -0
- package/test/node_modules/cliui/CHANGELOG.md +139 -0
- package/test/node_modules/cliui/LICENSE.txt +14 -0
- package/test/node_modules/cliui/README.md +141 -0
- package/test/node_modules/cliui/build/index.cjs +302 -0
- package/test/node_modules/cliui/build/index.d.cts +43 -0
- package/test/node_modules/cliui/build/lib/index.js +287 -0
- package/test/node_modules/cliui/build/lib/string-utils.js +27 -0
- package/test/node_modules/cliui/index.mjs +13 -0
- package/test/node_modules/cliui/node_modules/ansi-regex/index.d.ts +37 -0
- package/test/node_modules/cliui/node_modules/ansi-regex/index.js +10 -0
- package/test/node_modules/cliui/node_modules/ansi-regex/license +9 -0
- package/test/node_modules/cliui/node_modules/ansi-regex/package.json +55 -0
- package/test/node_modules/cliui/node_modules/ansi-regex/readme.md +78 -0
- package/test/node_modules/cliui/node_modules/emoji-regex/LICENSE-MIT.txt +20 -0
- package/test/node_modules/cliui/node_modules/emoji-regex/README.md +73 -0
- package/test/node_modules/cliui/node_modules/emoji-regex/es2015/index.js +6 -0
- package/test/node_modules/cliui/node_modules/emoji-regex/es2015/text.js +6 -0
- package/test/node_modules/cliui/node_modules/emoji-regex/index.d.ts +23 -0
- package/test/node_modules/cliui/node_modules/emoji-regex/index.js +6 -0
- package/test/node_modules/cliui/node_modules/emoji-regex/package.json +50 -0
- package/test/node_modules/cliui/node_modules/emoji-regex/text.js +6 -0
- package/test/node_modules/cliui/node_modules/string-width/index.d.ts +29 -0
- package/test/node_modules/cliui/node_modules/string-width/index.js +47 -0
- package/test/node_modules/cliui/node_modules/string-width/license +9 -0
- package/test/node_modules/cliui/node_modules/string-width/package.json +56 -0
- package/test/node_modules/cliui/node_modules/string-width/readme.md +50 -0
- package/test/node_modules/cliui/node_modules/strip-ansi/index.d.ts +17 -0
- package/test/node_modules/cliui/node_modules/strip-ansi/index.js +4 -0
- package/test/node_modules/cliui/node_modules/strip-ansi/license +9 -0
- package/test/node_modules/cliui/node_modules/strip-ansi/package.json +54 -0
- package/test/node_modules/cliui/node_modules/strip-ansi/readme.md +46 -0
- package/test/node_modules/cliui/node_modules/wrap-ansi/index.js +216 -0
- package/test/node_modules/cliui/node_modules/wrap-ansi/license +9 -0
- package/test/node_modules/cliui/node_modules/wrap-ansi/package.json +62 -0
- package/test/node_modules/cliui/node_modules/wrap-ansi/readme.md +91 -0
- package/test/node_modules/cliui/package.json +83 -0
- package/test/node_modules/color-convert/CHANGELOG.md +54 -0
- package/test/node_modules/color-convert/LICENSE +21 -0
- package/test/node_modules/color-convert/README.md +68 -0
- package/test/node_modules/color-convert/conversions.js +839 -0
- package/test/node_modules/color-convert/index.js +81 -0
- package/test/node_modules/color-convert/package.json +48 -0
- package/test/node_modules/color-convert/route.js +97 -0
- package/test/node_modules/color-name/LICENSE +8 -0
- package/test/node_modules/color-name/README.md +11 -0
- package/test/node_modules/color-name/index.js +152 -0
- package/test/node_modules/color-name/package.json +28 -0
- package/test/node_modules/combined-stream/License +19 -0
- package/test/node_modules/combined-stream/Readme.md +138 -0
- package/test/node_modules/combined-stream/lib/combined_stream.js +208 -0
- package/test/node_modules/combined-stream/package.json +25 -0
- package/test/node_modules/combined-stream/yarn.lock +17 -0
- package/test/node_modules/component-emitter/LICENSE +24 -0
- package/test/node_modules/component-emitter/Readme.md +74 -0
- package/test/node_modules/component-emitter/index.js +175 -0
- package/test/node_modules/component-emitter/package.json +28 -0
- package/test/node_modules/cookiejar/LICENSE +9 -0
- package/test/node_modules/cookiejar/cookiejar.js +281 -0
- package/test/node_modules/cookiejar/package.json +26 -0
- package/test/node_modules/cookiejar/readme.md +60 -0
- package/test/node_modules/cross-spawn/LICENSE +21 -0
- package/test/node_modules/cross-spawn/README.md +89 -0
- package/test/node_modules/cross-spawn/index.js +39 -0
- package/test/node_modules/cross-spawn/lib/enoent.js +59 -0
- package/test/node_modules/cross-spawn/lib/parse.js +91 -0
- package/test/node_modules/cross-spawn/lib/util/escape.js +47 -0
- package/test/node_modules/cross-spawn/lib/util/readShebang.js +23 -0
- package/test/node_modules/cross-spawn/lib/util/resolveCommand.js +52 -0
- package/test/node_modules/cross-spawn/package.json +73 -0
- package/test/node_modules/data-uri-to-buffer/README.md +88 -0
- package/test/node_modules/data-uri-to-buffer/dist/index.d.ts +15 -0
- package/test/node_modules/data-uri-to-buffer/dist/index.js +53 -0
- package/test/node_modules/data-uri-to-buffer/dist/index.js.map +1 -0
- package/test/node_modules/data-uri-to-buffer/package.json +62 -0
- package/test/node_modules/data-uri-to-buffer/src/index.ts +68 -0
- package/test/node_modules/debug/LICENSE +20 -0
- package/test/node_modules/debug/README.md +481 -0
- package/test/node_modules/debug/package.json +65 -0
- package/test/node_modules/debug/src/browser.js +272 -0
- package/test/node_modules/debug/src/common.js +292 -0
- package/test/node_modules/debug/src/index.js +10 -0
- package/test/node_modules/debug/src/node.js +263 -0
- package/test/node_modules/decamelize/index.d.ts +20 -0
- package/test/node_modules/decamelize/index.js +12 -0
- package/test/node_modules/decamelize/license +9 -0
- package/test/node_modules/decamelize/package.json +40 -0
- package/test/node_modules/decamelize/readme.md +51 -0
- package/test/node_modules/deep-eql/LICENSE +19 -0
- package/test/node_modules/deep-eql/README.md +93 -0
- package/test/node_modules/deep-eql/index.js +513 -0
- package/test/node_modules/deep-eql/package.json +73 -0
- package/test/node_modules/delayed-stream/License +19 -0
- package/test/node_modules/delayed-stream/Makefile +7 -0
- package/test/node_modules/delayed-stream/Readme.md +141 -0
- package/test/node_modules/delayed-stream/lib/delayed_stream.js +107 -0
- package/test/node_modules/delayed-stream/package.json +27 -0
- package/test/node_modules/dezalgo/LICENSE +15 -0
- package/test/node_modules/dezalgo/README.md +29 -0
- package/test/node_modules/dezalgo/dezalgo.js +22 -0
- package/test/node_modules/dezalgo/package.json +46 -0
- package/test/node_modules/diff/CONTRIBUTING.md +36 -0
- package/test/node_modules/diff/LICENSE +29 -0
- package/test/node_modules/diff/README.md +339 -0
- package/test/node_modules/diff/dist/diff.js +1730 -0
- package/test/node_modules/diff/dist/diff.min.js +1 -0
- package/test/node_modules/diff/lib/convert/dmp.js +32 -0
- package/test/node_modules/diff/lib/convert/xml.js +42 -0
- package/test/node_modules/diff/lib/diff/array.js +45 -0
- package/test/node_modules/diff/lib/diff/base.js +358 -0
- package/test/node_modules/diff/lib/diff/character.js +37 -0
- package/test/node_modules/diff/lib/diff/css.js +41 -0
- package/test/node_modules/diff/lib/diff/json.js +163 -0
- package/test/node_modules/diff/lib/diff/line.js +94 -0
- package/test/node_modules/diff/lib/diff/sentence.js +41 -0
- package/test/node_modules/diff/lib/diff/word.js +108 -0
- package/test/node_modules/diff/lib/index.es6.js +1699 -0
- package/test/node_modules/diff/lib/index.js +234 -0
- package/test/node_modules/diff/lib/index.mjs +1699 -0
- package/test/node_modules/diff/lib/patch/apply.js +238 -0
- package/test/node_modules/diff/lib/patch/create.js +276 -0
- package/test/node_modules/diff/lib/patch/merge.js +613 -0
- package/test/node_modules/diff/lib/patch/parse.js +167 -0
- package/test/node_modules/diff/lib/patch/reverse.js +63 -0
- package/test/node_modules/diff/lib/util/array.js +32 -0
- package/test/node_modules/diff/lib/util/distance-iterator.js +57 -0
- package/test/node_modules/diff/lib/util/params.js +24 -0
- package/test/node_modules/diff/package.json +89 -0
- package/test/node_modules/diff/release-notes.md +317 -0
- package/test/node_modules/diff/runtime.js +3 -0
- package/test/node_modules/dunder-proto/.eslintrc +5 -0
- package/test/node_modules/dunder-proto/.github/FUNDING.yml +12 -0
- package/test/node_modules/dunder-proto/.nycrc +13 -0
- package/test/node_modules/dunder-proto/CHANGELOG.md +24 -0
- package/test/node_modules/dunder-proto/LICENSE +21 -0
- package/test/node_modules/dunder-proto/README.md +54 -0
- package/test/node_modules/dunder-proto/get.d.ts +5 -0
- package/test/node_modules/dunder-proto/get.js +30 -0
- package/test/node_modules/dunder-proto/package.json +76 -0
- package/test/node_modules/dunder-proto/set.d.ts +5 -0
- package/test/node_modules/dunder-proto/set.js +35 -0
- package/test/node_modules/dunder-proto/test/get.js +34 -0
- package/test/node_modules/dunder-proto/test/index.js +4 -0
- package/test/node_modules/dunder-proto/test/set.js +50 -0
- package/test/node_modules/dunder-proto/tsconfig.json +9 -0
- package/test/node_modules/eastasianwidth/README.md +32 -0
- package/test/node_modules/eastasianwidth/eastasianwidth.js +311 -0
- package/test/node_modules/eastasianwidth/package.json +18 -0
- package/test/node_modules/emoji-regex/LICENSE-MIT.txt +20 -0
- package/test/node_modules/emoji-regex/README.md +137 -0
- package/test/node_modules/emoji-regex/RGI_Emoji.d.ts +5 -0
- package/test/node_modules/emoji-regex/RGI_Emoji.js +6 -0
- package/test/node_modules/emoji-regex/es2015/RGI_Emoji.d.ts +5 -0
- package/test/node_modules/emoji-regex/es2015/RGI_Emoji.js +6 -0
- package/test/node_modules/emoji-regex/es2015/index.d.ts +5 -0
- package/test/node_modules/emoji-regex/es2015/index.js +6 -0
- package/test/node_modules/emoji-regex/es2015/text.d.ts +5 -0
- package/test/node_modules/emoji-regex/es2015/text.js +6 -0
- package/test/node_modules/emoji-regex/index.d.ts +5 -0
- package/test/node_modules/emoji-regex/index.js +6 -0
- package/test/node_modules/emoji-regex/package.json +52 -0
- package/test/node_modules/emoji-regex/text.d.ts +5 -0
- package/test/node_modules/emoji-regex/text.js +6 -0
- package/test/node_modules/es-define-property/.eslintrc +13 -0
- package/test/node_modules/es-define-property/.github/FUNDING.yml +12 -0
- package/test/node_modules/es-define-property/.nycrc +9 -0
- package/test/node_modules/es-define-property/CHANGELOG.md +29 -0
- package/test/node_modules/es-define-property/LICENSE +21 -0
- package/test/node_modules/es-define-property/README.md +49 -0
- package/test/node_modules/es-define-property/index.d.ts +3 -0
- package/test/node_modules/es-define-property/index.js +14 -0
- package/test/node_modules/es-define-property/package.json +81 -0
- package/test/node_modules/es-define-property/test/index.js +56 -0
- package/test/node_modules/es-define-property/tsconfig.json +10 -0
- package/test/node_modules/es-errors/.eslintrc +5 -0
- package/test/node_modules/es-errors/.github/FUNDING.yml +12 -0
- package/test/node_modules/es-errors/CHANGELOG.md +40 -0
- package/test/node_modules/es-errors/LICENSE +21 -0
- package/test/node_modules/es-errors/README.md +55 -0
- package/test/node_modules/es-errors/eval.d.ts +3 -0
- package/test/node_modules/es-errors/eval.js +4 -0
- package/test/node_modules/es-errors/index.d.ts +3 -0
- package/test/node_modules/es-errors/index.js +4 -0
- package/test/node_modules/es-errors/package.json +80 -0
- package/test/node_modules/es-errors/range.d.ts +3 -0
- package/test/node_modules/es-errors/range.js +4 -0
- package/test/node_modules/es-errors/ref.d.ts +3 -0
- package/test/node_modules/es-errors/ref.js +4 -0
- package/test/node_modules/es-errors/syntax.d.ts +3 -0
- package/test/node_modules/es-errors/syntax.js +4 -0
- package/test/node_modules/es-errors/test/index.js +19 -0
- package/test/node_modules/es-errors/tsconfig.json +49 -0
- package/test/node_modules/es-errors/type.d.ts +3 -0
- package/test/node_modules/es-errors/type.js +4 -0
- package/test/node_modules/es-errors/uri.d.ts +3 -0
- package/test/node_modules/es-errors/uri.js +4 -0
- package/test/node_modules/es-object-atoms/.eslintrc +16 -0
- package/test/node_modules/es-object-atoms/.github/FUNDING.yml +12 -0
- package/test/node_modules/es-object-atoms/CHANGELOG.md +37 -0
- package/test/node_modules/es-object-atoms/LICENSE +21 -0
- package/test/node_modules/es-object-atoms/README.md +63 -0
- package/test/node_modules/es-object-atoms/RequireObjectCoercible.d.ts +3 -0
- package/test/node_modules/es-object-atoms/RequireObjectCoercible.js +11 -0
- package/test/node_modules/es-object-atoms/ToObject.d.ts +7 -0
- package/test/node_modules/es-object-atoms/ToObject.js +10 -0
- package/test/node_modules/es-object-atoms/index.d.ts +3 -0
- package/test/node_modules/es-object-atoms/index.js +4 -0
- package/test/node_modules/es-object-atoms/isObject.d.ts +3 -0
- package/test/node_modules/es-object-atoms/isObject.js +6 -0
- package/test/node_modules/es-object-atoms/package.json +80 -0
- package/test/node_modules/es-object-atoms/test/index.js +38 -0
- package/test/node_modules/es-object-atoms/tsconfig.json +6 -0
- package/test/node_modules/es-set-tostringtag/.eslintrc +13 -0
- package/test/node_modules/es-set-tostringtag/.nycrc +9 -0
- package/test/node_modules/es-set-tostringtag/CHANGELOG.md +67 -0
- package/test/node_modules/es-set-tostringtag/LICENSE +21 -0
- package/test/node_modules/es-set-tostringtag/README.md +53 -0
- package/test/node_modules/es-set-tostringtag/index.d.ts +10 -0
- package/test/node_modules/es-set-tostringtag/index.js +35 -0
- package/test/node_modules/es-set-tostringtag/package.json +78 -0
- package/test/node_modules/es-set-tostringtag/test/index.js +85 -0
- package/test/node_modules/es-set-tostringtag/tsconfig.json +9 -0
- package/test/node_modules/escalade/dist/index.js +22 -0
- package/test/node_modules/escalade/dist/index.mjs +22 -0
- package/test/node_modules/escalade/index.d.mts +11 -0
- package/test/node_modules/escalade/index.d.ts +15 -0
- package/test/node_modules/escalade/license +9 -0
- package/test/node_modules/escalade/package.json +74 -0
- package/test/node_modules/escalade/readme.md +211 -0
- package/test/node_modules/escalade/sync/index.d.mts +9 -0
- package/test/node_modules/escalade/sync/index.d.ts +13 -0
- package/test/node_modules/escalade/sync/index.js +18 -0
- package/test/node_modules/escalade/sync/index.mjs +18 -0
- package/test/node_modules/escape-string-regexp/index.d.ts +18 -0
- package/test/node_modules/escape-string-regexp/index.js +13 -0
- package/test/node_modules/escape-string-regexp/license +9 -0
- package/test/node_modules/escape-string-regexp/package.json +38 -0
- package/test/node_modules/escape-string-regexp/readme.md +34 -0
- package/test/node_modules/ethereum-cryptography/LICENSE +21 -0
- package/test/node_modules/ethereum-cryptography/README.md +509 -0
- package/test/node_modules/ethereum-cryptography/aes.d.ts +2 -0
- package/test/node_modules/ethereum-cryptography/aes.js +97 -0
- package/test/node_modules/ethereum-cryptography/bip39/index.d.ts +1 -0
- package/test/node_modules/ethereum-cryptography/bip39/index.js +10 -0
- package/test/node_modules/ethereum-cryptography/bip39/wordlists/czech.d.ts +1 -0
- package/test/node_modules/ethereum-cryptography/bip39/wordlists/czech.js +5 -0
- package/test/node_modules/ethereum-cryptography/bip39/wordlists/english.d.ts +1 -0
- package/test/node_modules/ethereum-cryptography/bip39/wordlists/english.js +5 -0
- package/test/node_modules/ethereum-cryptography/bip39/wordlists/french.d.ts +1 -0
- package/test/node_modules/ethereum-cryptography/bip39/wordlists/french.js +5 -0
- package/test/node_modules/ethereum-cryptography/bip39/wordlists/italian.d.ts +1 -0
- package/test/node_modules/ethereum-cryptography/bip39/wordlists/italian.js +5 -0
- package/test/node_modules/ethereum-cryptography/bip39/wordlists/japanese.d.ts +1 -0
- package/test/node_modules/ethereum-cryptography/bip39/wordlists/japanese.js +5 -0
- package/test/node_modules/ethereum-cryptography/bip39/wordlists/korean.d.ts +1 -0
- package/test/node_modules/ethereum-cryptography/bip39/wordlists/korean.js +5 -0
- package/test/node_modules/ethereum-cryptography/bip39/wordlists/simplified-chinese.d.ts +1 -0
- package/test/node_modules/ethereum-cryptography/bip39/wordlists/simplified-chinese.js +5 -0
- package/test/node_modules/ethereum-cryptography/bip39/wordlists/spanish.d.ts +1 -0
- package/test/node_modules/ethereum-cryptography/bip39/wordlists/spanish.js +5 -0
- package/test/node_modules/ethereum-cryptography/bip39/wordlists/traditional-chinese.d.ts +1 -0
- package/test/node_modules/ethereum-cryptography/bip39/wordlists/traditional-chinese.js +5 -0
- package/test/node_modules/ethereum-cryptography/blake2b.d.ts +1 -0
- package/test/node_modules/ethereum-cryptography/blake2b.js +13 -0
- package/test/node_modules/ethereum-cryptography/esm/aes.js +93 -0
- package/test/node_modules/ethereum-cryptography/esm/bip39/index.js +1 -0
- package/test/node_modules/ethereum-cryptography/esm/bip39/wordlists/czech.js +1 -0
- package/test/node_modules/ethereum-cryptography/esm/bip39/wordlists/english.js +1 -0
- package/test/node_modules/ethereum-cryptography/esm/bip39/wordlists/french.js +1 -0
- package/test/node_modules/ethereum-cryptography/esm/bip39/wordlists/italian.js +1 -0
- package/test/node_modules/ethereum-cryptography/esm/bip39/wordlists/japanese.js +1 -0
- package/test/node_modules/ethereum-cryptography/esm/bip39/wordlists/korean.js +1 -0
- package/test/node_modules/ethereum-cryptography/esm/bip39/wordlists/simplified-chinese.js +1 -0
- package/test/node_modules/ethereum-cryptography/esm/bip39/wordlists/spanish.js +1 -0
- package/test/node_modules/ethereum-cryptography/esm/bip39/wordlists/traditional-chinese.js +1 -0
- package/test/node_modules/ethereum-cryptography/esm/blake2b.js +9 -0
- package/test/node_modules/ethereum-cryptography/esm/hdkey.js +1 -0
- package/test/node_modules/ethereum-cryptography/esm/index.js +2 -0
- package/test/node_modules/ethereum-cryptography/esm/keccak.js +10 -0
- package/test/node_modules/ethereum-cryptography/esm/package.json +3 -0
- package/test/node_modules/ethereum-cryptography/esm/pbkdf2.js +26 -0
- package/test/node_modules/ethereum-cryptography/esm/random.js +7 -0
- package/test/node_modules/ethereum-cryptography/esm/ripemd160.js +3 -0
- package/test/node_modules/ethereum-cryptography/esm/scrypt.js +12 -0
- package/test/node_modules/ethereum-cryptography/esm/secp256k1-compat.js +254 -0
- package/test/node_modules/ethereum-cryptography/esm/secp256k1.js +1 -0
- package/test/node_modules/ethereum-cryptography/esm/sha256.js +3 -0
- package/test/node_modules/ethereum-cryptography/esm/sha512.js +3 -0
- package/test/node_modules/ethereum-cryptography/esm/utils.js +47 -0
- package/test/node_modules/ethereum-cryptography/hdkey.d.ts +1 -0
- package/test/node_modules/ethereum-cryptography/hdkey.js +6 -0
- package/test/node_modules/ethereum-cryptography/index.d.ts +0 -0
- package/test/node_modules/ethereum-cryptography/index.js +2 -0
- package/test/node_modules/ethereum-cryptography/keccak.d.ts +11 -0
- package/test/node_modules/ethereum-cryptography/keccak.js +13 -0
- package/test/node_modules/ethereum-cryptography/package.json +369 -0
- package/test/node_modules/ethereum-cryptography/pbkdf2.d.ts +2 -0
- package/test/node_modules/ethereum-cryptography/pbkdf2.js +30 -0
- package/test/node_modules/ethereum-cryptography/random.d.ts +2 -0
- package/test/node_modules/ethereum-cryptography/random.js +11 -0
- package/test/node_modules/ethereum-cryptography/ripemd160.d.ts +1 -0
- package/test/node_modules/ethereum-cryptography/ripemd160.js +6 -0
- package/test/node_modules/ethereum-cryptography/scrypt.d.ts +4 -0
- package/test/node_modules/ethereum-cryptography/scrypt.js +16 -0
- package/test/node_modules/ethereum-cryptography/secp256k1-compat.d.ts +35 -0
- package/test/node_modules/ethereum-cryptography/secp256k1-compat.js +277 -0
- package/test/node_modules/ethereum-cryptography/secp256k1.d.ts +1 -0
- package/test/node_modules/ethereum-cryptography/secp256k1.js +5 -0
- package/test/node_modules/ethereum-cryptography/sha256.d.ts +1 -0
- package/test/node_modules/ethereum-cryptography/sha256.js +6 -0
- package/test/node_modules/ethereum-cryptography/sha512.d.ts +1 -0
- package/test/node_modules/ethereum-cryptography/sha512.js +6 -0
- package/test/node_modules/ethereum-cryptography/utils.d.ts +12 -0
- package/test/node_modules/ethereum-cryptography/utils.js +63 -0
- package/test/node_modules/fast-safe-stringify/.travis.yml +8 -0
- package/test/node_modules/fast-safe-stringify/CHANGELOG.md +17 -0
- package/test/node_modules/fast-safe-stringify/LICENSE +23 -0
- package/test/node_modules/fast-safe-stringify/benchmark.js +137 -0
- package/test/node_modules/fast-safe-stringify/index.d.ts +23 -0
- package/test/node_modules/fast-safe-stringify/index.js +229 -0
- package/test/node_modules/fast-safe-stringify/package.json +46 -0
- package/test/node_modules/fast-safe-stringify/readme.md +170 -0
- package/test/node_modules/fast-safe-stringify/test-stable.js +404 -0
- package/test/node_modules/fast-safe-stringify/test.js +397 -0
- package/test/node_modules/fetch-blob/LICENSE +21 -0
- package/test/node_modules/fetch-blob/README.md +106 -0
- package/test/node_modules/fetch-blob/file.d.ts +2 -0
- package/test/node_modules/fetch-blob/file.js +49 -0
- package/test/node_modules/fetch-blob/from.d.ts +26 -0
- package/test/node_modules/fetch-blob/from.js +100 -0
- package/test/node_modules/fetch-blob/index.d.ts +3 -0
- package/test/node_modules/fetch-blob/index.js +250 -0
- package/test/node_modules/fetch-blob/package.json +56 -0
- package/test/node_modules/fetch-blob/streams.cjs +51 -0
- package/test/node_modules/fill-range/LICENSE +21 -0
- package/test/node_modules/fill-range/README.md +237 -0
- package/test/node_modules/fill-range/index.js +248 -0
- package/test/node_modules/fill-range/package.json +74 -0
- package/test/node_modules/find-up/index.d.ts +138 -0
- package/test/node_modules/find-up/index.js +89 -0
- package/test/node_modules/find-up/license +9 -0
- package/test/node_modules/find-up/package.json +54 -0
- package/test/node_modules/find-up/readme.md +151 -0
- package/test/node_modules/flat/.travis.yml +8 -0
- package/test/node_modules/flat/LICENSE +12 -0
- package/test/node_modules/flat/README.md +236 -0
- package/test/node_modules/flat/cli.js +42 -0
- package/test/node_modules/flat/index.js +158 -0
- package/test/node_modules/flat/package.json +37 -0
- package/test/node_modules/flat/test/test.js +643 -0
- package/test/node_modules/foreground-child/LICENSE +15 -0
- package/test/node_modules/foreground-child/README.md +128 -0
- package/test/node_modules/foreground-child/dist/commonjs/all-signals.d.ts +2 -0
- package/test/node_modules/foreground-child/dist/commonjs/all-signals.d.ts.map +1 -0
- package/test/node_modules/foreground-child/dist/commonjs/all-signals.js +58 -0
- package/test/node_modules/foreground-child/dist/commonjs/all-signals.js.map +1 -0
- package/test/node_modules/foreground-child/dist/commonjs/index.d.ts +58 -0
- package/test/node_modules/foreground-child/dist/commonjs/index.d.ts.map +1 -0
- package/test/node_modules/foreground-child/dist/commonjs/index.js +123 -0
- package/test/node_modules/foreground-child/dist/commonjs/index.js.map +1 -0
- package/test/node_modules/foreground-child/dist/commonjs/package.json +3 -0
- package/test/node_modules/foreground-child/dist/commonjs/proxy-signals.d.ts +6 -0
- package/test/node_modules/foreground-child/dist/commonjs/proxy-signals.d.ts.map +1 -0
- package/test/node_modules/foreground-child/dist/commonjs/proxy-signals.js +38 -0
- package/test/node_modules/foreground-child/dist/commonjs/proxy-signals.js.map +1 -0
- package/test/node_modules/foreground-child/dist/commonjs/watchdog.d.ts +10 -0
- package/test/node_modules/foreground-child/dist/commonjs/watchdog.d.ts.map +1 -0
- package/test/node_modules/foreground-child/dist/commonjs/watchdog.js +50 -0
- package/test/node_modules/foreground-child/dist/commonjs/watchdog.js.map +1 -0
- package/test/node_modules/foreground-child/dist/esm/all-signals.d.ts +2 -0
- package/test/node_modules/foreground-child/dist/esm/all-signals.d.ts.map +1 -0
- package/test/node_modules/foreground-child/dist/esm/all-signals.js +52 -0
- package/test/node_modules/foreground-child/dist/esm/all-signals.js.map +1 -0
- package/test/node_modules/foreground-child/dist/esm/index.d.ts +58 -0
- package/test/node_modules/foreground-child/dist/esm/index.d.ts.map +1 -0
- package/test/node_modules/foreground-child/dist/esm/index.js +115 -0
- package/test/node_modules/foreground-child/dist/esm/index.js.map +1 -0
- package/test/node_modules/foreground-child/dist/esm/package.json +3 -0
- package/test/node_modules/foreground-child/dist/esm/proxy-signals.d.ts +6 -0
- package/test/node_modules/foreground-child/dist/esm/proxy-signals.d.ts.map +1 -0
- package/test/node_modules/foreground-child/dist/esm/proxy-signals.js +34 -0
- package/test/node_modules/foreground-child/dist/esm/proxy-signals.js.map +1 -0
- package/test/node_modules/foreground-child/dist/esm/watchdog.d.ts +10 -0
- package/test/node_modules/foreground-child/dist/esm/watchdog.d.ts.map +1 -0
- package/test/node_modules/foreground-child/dist/esm/watchdog.js +46 -0
- package/test/node_modules/foreground-child/dist/esm/watchdog.js.map +1 -0
- package/test/node_modules/foreground-child/package.json +106 -0
- package/test/node_modules/form-data/License +19 -0
- package/test/node_modules/form-data/Readme.md +358 -0
- package/test/node_modules/form-data/index.d.ts +62 -0
- package/test/node_modules/form-data/lib/browser.js +2 -0
- package/test/node_modules/form-data/lib/form_data.js +503 -0
- package/test/node_modules/form-data/lib/populate.js +10 -0
- package/test/node_modules/form-data/package.json +74 -0
- package/test/node_modules/formdata-polyfill/FormData.js +441 -0
- package/test/node_modules/formdata-polyfill/LICENSE +21 -0
- package/test/node_modules/formdata-polyfill/README.md +145 -0
- package/test/node_modules/formdata-polyfill/esm.min.d.ts +5 -0
- package/test/node_modules/formdata-polyfill/esm.min.js +40 -0
- package/test/node_modules/formdata-polyfill/formdata-to-blob.js +39 -0
- package/test/node_modules/formdata-polyfill/formdata.min.js +21 -0
- package/test/node_modules/formdata-polyfill/package.json +50 -0
- package/test/node_modules/formidable/LICENSE +21 -0
- package/test/node_modules/formidable/README.md +884 -0
- package/test/node_modules/formidable/README_pt_BR.md +841 -0
- package/test/node_modules/formidable/dist/helpers/firstValues.cjs +394 -0
- package/test/node_modules/formidable/dist/helpers/readBooleans.cjs +12 -0
- package/test/node_modules/formidable/dist/index.cjs +1690 -0
- package/test/node_modules/formidable/dist/parsers/JSON.cjs +35 -0
- package/test/node_modules/formidable/dist/parsers/Multipart.cjs +372 -0
- package/test/node_modules/formidable/dist/parsers/OctetStream.cjs +14 -0
- package/test/node_modules/formidable/dist/parsers/Querystring.cjs +38 -0
- package/test/node_modules/formidable/dist/parsers/StreamingQuerystring.cjs +131 -0
- package/test/node_modules/formidable/package.json +140 -0
- package/test/node_modules/formidable/src/Formidable.js +684 -0
- package/test/node_modules/formidable/src/FormidableError.js +51 -0
- package/test/node_modules/formidable/src/PersistentFile.js +88 -0
- package/test/node_modules/formidable/src/VolatileFile.js +80 -0
- package/test/node_modules/formidable/src/helpers/firstValues.js +19 -0
- package/test/node_modules/formidable/src/helpers/readBooleans.js +10 -0
- package/test/node_modules/formidable/src/index.js +32 -0
- package/test/node_modules/formidable/src/parsers/Dummy.js +19 -0
- package/test/node_modules/formidable/src/parsers/JSON.js +30 -0
- package/test/node_modules/formidable/src/parsers/Multipart.js +356 -0
- package/test/node_modules/formidable/src/parsers/OctetStream.js +10 -0
- package/test/node_modules/formidable/src/parsers/Querystring.js +33 -0
- package/test/node_modules/formidable/src/parsers/StreamingQuerystring.js +117 -0
- package/test/node_modules/formidable/src/parsers/index.js +15 -0
- package/test/node_modules/formidable/src/plugins/index.js +6 -0
- package/test/node_modules/formidable/src/plugins/json.js +39 -0
- package/test/node_modules/formidable/src/plugins/multipart.js +173 -0
- package/test/node_modules/formidable/src/plugins/octetstream.js +84 -0
- package/test/node_modules/formidable/src/plugins/querystring.js +41 -0
- package/test/node_modules/fount-js/README.md +35 -0
- package/test/node_modules/fount-js/fount.cjs +145 -0
- package/test/node_modules/fount-js/fount.js +202 -0
- package/test/node_modules/fount-js/package.json +23 -0
- package/test/node_modules/fsevents/LICENSE +22 -0
- package/test/node_modules/fsevents/README.md +89 -0
- package/test/node_modules/fsevents/fsevents.d.ts +46 -0
- package/test/node_modules/fsevents/fsevents.js +83 -0
- package/test/node_modules/fsevents/fsevents.node +0 -0
- package/test/node_modules/fsevents/package.json +62 -0
- package/test/node_modules/function-bind/.eslintrc +21 -0
- package/test/node_modules/function-bind/.github/FUNDING.yml +12 -0
- package/test/node_modules/function-bind/.github/SECURITY.md +3 -0
- package/test/node_modules/function-bind/.nycrc +13 -0
- package/test/node_modules/function-bind/CHANGELOG.md +136 -0
- package/test/node_modules/function-bind/LICENSE +20 -0
- package/test/node_modules/function-bind/README.md +46 -0
- package/test/node_modules/function-bind/implementation.js +84 -0
- package/test/node_modules/function-bind/index.js +5 -0
- package/test/node_modules/function-bind/package.json +87 -0
- package/test/node_modules/function-bind/test/.eslintrc +9 -0
- package/test/node_modules/function-bind/test/index.js +252 -0
- package/test/node_modules/get-caller-file/LICENSE.md +6 -0
- package/test/node_modules/get-caller-file/README.md +41 -0
- package/test/node_modules/get-caller-file/index.d.ts +2 -0
- package/test/node_modules/get-caller-file/index.js +22 -0
- package/test/node_modules/get-caller-file/index.js.map +1 -0
- package/test/node_modules/get-caller-file/package.json +42 -0
- package/test/node_modules/get-intrinsic/.eslintrc +42 -0
- package/test/node_modules/get-intrinsic/.github/FUNDING.yml +12 -0
- package/test/node_modules/get-intrinsic/.nycrc +9 -0
- package/test/node_modules/get-intrinsic/CHANGELOG.md +186 -0
- package/test/node_modules/get-intrinsic/LICENSE +21 -0
- package/test/node_modules/get-intrinsic/README.md +71 -0
- package/test/node_modules/get-intrinsic/index.js +378 -0
- package/test/node_modules/get-intrinsic/package.json +97 -0
- package/test/node_modules/get-intrinsic/test/GetIntrinsic.js +274 -0
- package/test/node_modules/get-proto/.eslintrc +10 -0
- package/test/node_modules/get-proto/.github/FUNDING.yml +12 -0
- package/test/node_modules/get-proto/.nycrc +9 -0
- package/test/node_modules/get-proto/CHANGELOG.md +21 -0
- package/test/node_modules/get-proto/LICENSE +21 -0
- package/test/node_modules/get-proto/Object.getPrototypeOf.d.ts +5 -0
- package/test/node_modules/get-proto/Object.getPrototypeOf.js +6 -0
- package/test/node_modules/get-proto/README.md +50 -0
- package/test/node_modules/get-proto/Reflect.getPrototypeOf.d.ts +3 -0
- package/test/node_modules/get-proto/Reflect.getPrototypeOf.js +4 -0
- package/test/node_modules/get-proto/index.d.ts +5 -0
- package/test/node_modules/get-proto/index.js +27 -0
- package/test/node_modules/get-proto/package.json +81 -0
- package/test/node_modules/get-proto/test/index.js +68 -0
- package/test/node_modules/get-proto/tsconfig.json +9 -0
- package/test/node_modules/glob/LICENSE +15 -0
- package/test/node_modules/glob/README.md +1265 -0
- package/test/node_modules/glob/dist/commonjs/glob.d.ts +388 -0
- package/test/node_modules/glob/dist/commonjs/glob.d.ts.map +1 -0
- package/test/node_modules/glob/dist/commonjs/glob.js +247 -0
- package/test/node_modules/glob/dist/commonjs/glob.js.map +1 -0
- package/test/node_modules/glob/dist/commonjs/has-magic.d.ts +14 -0
- package/test/node_modules/glob/dist/commonjs/has-magic.d.ts.map +1 -0
- package/test/node_modules/glob/dist/commonjs/has-magic.js +27 -0
- package/test/node_modules/glob/dist/commonjs/has-magic.js.map +1 -0
- package/test/node_modules/glob/dist/commonjs/ignore.d.ts +24 -0
- package/test/node_modules/glob/dist/commonjs/ignore.d.ts.map +1 -0
- package/test/node_modules/glob/dist/commonjs/ignore.js +119 -0
- package/test/node_modules/glob/dist/commonjs/ignore.js.map +1 -0
- package/test/node_modules/glob/dist/commonjs/index.d.ts +97 -0
- package/test/node_modules/glob/dist/commonjs/index.d.ts.map +1 -0
- package/test/node_modules/glob/dist/commonjs/index.js +68 -0
- package/test/node_modules/glob/dist/commonjs/index.js.map +1 -0
- package/test/node_modules/glob/dist/commonjs/package.json +3 -0
- package/test/node_modules/glob/dist/commonjs/pattern.d.ts +76 -0
- package/test/node_modules/glob/dist/commonjs/pattern.d.ts.map +1 -0
- package/test/node_modules/glob/dist/commonjs/pattern.js +219 -0
- package/test/node_modules/glob/dist/commonjs/pattern.js.map +1 -0
- package/test/node_modules/glob/dist/commonjs/processor.d.ts +59 -0
- package/test/node_modules/glob/dist/commonjs/processor.d.ts.map +1 -0
- package/test/node_modules/glob/dist/commonjs/processor.js +301 -0
- package/test/node_modules/glob/dist/commonjs/processor.js.map +1 -0
- package/test/node_modules/glob/dist/commonjs/walker.d.ts +97 -0
- package/test/node_modules/glob/dist/commonjs/walker.d.ts.map +1 -0
- package/test/node_modules/glob/dist/commonjs/walker.js +387 -0
- package/test/node_modules/glob/dist/commonjs/walker.js.map +1 -0
- package/test/node_modules/glob/dist/esm/bin.d.mts +3 -0
- package/test/node_modules/glob/dist/esm/bin.d.mts.map +1 -0
- package/test/node_modules/glob/dist/esm/bin.mjs +270 -0
- package/test/node_modules/glob/dist/esm/bin.mjs.map +1 -0
- package/test/node_modules/glob/dist/esm/glob.d.ts +388 -0
- package/test/node_modules/glob/dist/esm/glob.d.ts.map +1 -0
- package/test/node_modules/glob/dist/esm/glob.js +243 -0
- package/test/node_modules/glob/dist/esm/glob.js.map +1 -0
- package/test/node_modules/glob/dist/esm/has-magic.d.ts +14 -0
- package/test/node_modules/glob/dist/esm/has-magic.d.ts.map +1 -0
- package/test/node_modules/glob/dist/esm/has-magic.js +23 -0
- package/test/node_modules/glob/dist/esm/has-magic.js.map +1 -0
- package/test/node_modules/glob/dist/esm/ignore.d.ts +24 -0
- package/test/node_modules/glob/dist/esm/ignore.d.ts.map +1 -0
- package/test/node_modules/glob/dist/esm/ignore.js +115 -0
- package/test/node_modules/glob/dist/esm/ignore.js.map +1 -0
- package/test/node_modules/glob/dist/esm/index.d.ts +97 -0
- package/test/node_modules/glob/dist/esm/index.d.ts.map +1 -0
- package/test/node_modules/glob/dist/esm/index.js +55 -0
- package/test/node_modules/glob/dist/esm/index.js.map +1 -0
- package/test/node_modules/glob/dist/esm/package.json +3 -0
- package/test/node_modules/glob/dist/esm/pattern.d.ts +76 -0
- package/test/node_modules/glob/dist/esm/pattern.d.ts.map +1 -0
- package/test/node_modules/glob/dist/esm/pattern.js +215 -0
- package/test/node_modules/glob/dist/esm/pattern.js.map +1 -0
- package/test/node_modules/glob/dist/esm/processor.d.ts +59 -0
- package/test/node_modules/glob/dist/esm/processor.d.ts.map +1 -0
- package/test/node_modules/glob/dist/esm/processor.js +294 -0
- package/test/node_modules/glob/dist/esm/processor.js.map +1 -0
- package/test/node_modules/glob/dist/esm/walker.d.ts +97 -0
- package/test/node_modules/glob/dist/esm/walker.d.ts.map +1 -0
- package/test/node_modules/glob/dist/esm/walker.js +381 -0
- package/test/node_modules/glob/dist/esm/walker.js.map +1 -0
- package/test/node_modules/glob/node_modules/minimatch/LICENSE +15 -0
- package/test/node_modules/glob/node_modules/minimatch/README.md +454 -0
- package/test/node_modules/glob/node_modules/minimatch/dist/commonjs/assert-valid-pattern.d.ts +2 -0
- package/test/node_modules/glob/node_modules/minimatch/dist/commonjs/assert-valid-pattern.d.ts.map +1 -0
- package/test/node_modules/glob/node_modules/minimatch/dist/commonjs/assert-valid-pattern.js +14 -0
- package/test/node_modules/glob/node_modules/minimatch/dist/commonjs/assert-valid-pattern.js.map +1 -0
- package/test/node_modules/glob/node_modules/minimatch/dist/commonjs/ast.d.ts +20 -0
- package/test/node_modules/glob/node_modules/minimatch/dist/commonjs/ast.d.ts.map +1 -0
- package/test/node_modules/glob/node_modules/minimatch/dist/commonjs/ast.js +592 -0
- package/test/node_modules/glob/node_modules/minimatch/dist/commonjs/ast.js.map +1 -0
- package/test/node_modules/glob/node_modules/minimatch/dist/commonjs/brace-expressions.d.ts +8 -0
- package/test/node_modules/glob/node_modules/minimatch/dist/commonjs/brace-expressions.d.ts.map +1 -0
- package/test/node_modules/glob/node_modules/minimatch/dist/commonjs/brace-expressions.js +152 -0
- package/test/node_modules/glob/node_modules/minimatch/dist/commonjs/brace-expressions.js.map +1 -0
- package/test/node_modules/glob/node_modules/minimatch/dist/commonjs/escape.d.ts +12 -0
- package/test/node_modules/glob/node_modules/minimatch/dist/commonjs/escape.d.ts.map +1 -0
- package/test/node_modules/glob/node_modules/minimatch/dist/commonjs/escape.js +22 -0
- package/test/node_modules/glob/node_modules/minimatch/dist/commonjs/escape.js.map +1 -0
- package/test/node_modules/glob/node_modules/minimatch/dist/commonjs/index.d.ts +94 -0
- package/test/node_modules/glob/node_modules/minimatch/dist/commonjs/index.d.ts.map +1 -0
- package/test/node_modules/glob/node_modules/minimatch/dist/commonjs/index.js +1017 -0
- package/test/node_modules/glob/node_modules/minimatch/dist/commonjs/index.js.map +1 -0
- package/test/node_modules/glob/node_modules/minimatch/dist/commonjs/package.json +3 -0
- package/test/node_modules/glob/node_modules/minimatch/dist/commonjs/unescape.d.ts +17 -0
- package/test/node_modules/glob/node_modules/minimatch/dist/commonjs/unescape.d.ts.map +1 -0
- package/test/node_modules/glob/node_modules/minimatch/dist/commonjs/unescape.js +24 -0
- package/test/node_modules/glob/node_modules/minimatch/dist/commonjs/unescape.js.map +1 -0
- package/test/node_modules/glob/node_modules/minimatch/dist/esm/assert-valid-pattern.d.ts +2 -0
- package/test/node_modules/glob/node_modules/minimatch/dist/esm/assert-valid-pattern.d.ts.map +1 -0
- package/test/node_modules/glob/node_modules/minimatch/dist/esm/assert-valid-pattern.js +10 -0
- package/test/node_modules/glob/node_modules/minimatch/dist/esm/assert-valid-pattern.js.map +1 -0
- package/test/node_modules/glob/node_modules/minimatch/dist/esm/ast.d.ts +20 -0
- package/test/node_modules/glob/node_modules/minimatch/dist/esm/ast.d.ts.map +1 -0
- package/test/node_modules/glob/node_modules/minimatch/dist/esm/ast.js +588 -0
- package/test/node_modules/glob/node_modules/minimatch/dist/esm/ast.js.map +1 -0
- package/test/node_modules/glob/node_modules/minimatch/dist/esm/brace-expressions.d.ts +8 -0
- package/test/node_modules/glob/node_modules/minimatch/dist/esm/brace-expressions.d.ts.map +1 -0
- package/test/node_modules/glob/node_modules/minimatch/dist/esm/brace-expressions.js +148 -0
- package/test/node_modules/glob/node_modules/minimatch/dist/esm/brace-expressions.js.map +1 -0
- package/test/node_modules/glob/node_modules/minimatch/dist/esm/escape.d.ts +12 -0
- package/test/node_modules/glob/node_modules/minimatch/dist/esm/escape.d.ts.map +1 -0
- package/test/node_modules/glob/node_modules/minimatch/dist/esm/escape.js +18 -0
- package/test/node_modules/glob/node_modules/minimatch/dist/esm/escape.js.map +1 -0
- package/test/node_modules/glob/node_modules/minimatch/dist/esm/index.d.ts +94 -0
- package/test/node_modules/glob/node_modules/minimatch/dist/esm/index.d.ts.map +1 -0
- package/test/node_modules/glob/node_modules/minimatch/dist/esm/index.js +1001 -0
- package/test/node_modules/glob/node_modules/minimatch/dist/esm/index.js.map +1 -0
- package/test/node_modules/glob/node_modules/minimatch/dist/esm/package.json +3 -0
- package/test/node_modules/glob/node_modules/minimatch/dist/esm/unescape.d.ts +17 -0
- package/test/node_modules/glob/node_modules/minimatch/dist/esm/unescape.d.ts.map +1 -0
- package/test/node_modules/glob/node_modules/minimatch/dist/esm/unescape.js +20 -0
- package/test/node_modules/glob/node_modules/minimatch/dist/esm/unescape.js.map +1 -0
- package/test/node_modules/glob/node_modules/minimatch/package.json +82 -0
- package/test/node_modules/glob/package.json +99 -0
- package/test/node_modules/glob-parent/CHANGELOG.md +110 -0
- package/test/node_modules/glob-parent/LICENSE +15 -0
- package/test/node_modules/glob-parent/README.md +137 -0
- package/test/node_modules/glob-parent/index.js +42 -0
- package/test/node_modules/glob-parent/package.json +48 -0
- package/test/node_modules/gopd/.eslintrc +16 -0
- package/test/node_modules/gopd/.github/FUNDING.yml +12 -0
- package/test/node_modules/gopd/CHANGELOG.md +45 -0
- package/test/node_modules/gopd/LICENSE +21 -0
- package/test/node_modules/gopd/README.md +40 -0
- package/test/node_modules/gopd/gOPD.d.ts +1 -0
- package/test/node_modules/gopd/gOPD.js +4 -0
- package/test/node_modules/gopd/index.d.ts +5 -0
- package/test/node_modules/gopd/index.js +15 -0
- package/test/node_modules/gopd/package.json +77 -0
- package/test/node_modules/gopd/test/index.js +36 -0
- package/test/node_modules/gopd/tsconfig.json +9 -0
- package/test/node_modules/has-flag/index.d.ts +39 -0
- package/test/node_modules/has-flag/index.js +8 -0
- package/test/node_modules/has-flag/license +9 -0
- package/test/node_modules/has-flag/package.json +46 -0
- package/test/node_modules/has-flag/readme.md +89 -0
- package/test/node_modules/has-symbols/.eslintrc +11 -0
- package/test/node_modules/has-symbols/.github/FUNDING.yml +12 -0
- package/test/node_modules/has-symbols/.nycrc +9 -0
- package/test/node_modules/has-symbols/CHANGELOG.md +91 -0
- package/test/node_modules/has-symbols/LICENSE +21 -0
- package/test/node_modules/has-symbols/README.md +46 -0
- package/test/node_modules/has-symbols/index.d.ts +3 -0
- package/test/node_modules/has-symbols/index.js +14 -0
- package/test/node_modules/has-symbols/package.json +111 -0
- package/test/node_modules/has-symbols/shams.d.ts +3 -0
- package/test/node_modules/has-symbols/shams.js +45 -0
- package/test/node_modules/has-symbols/test/index.js +22 -0
- package/test/node_modules/has-symbols/test/shams/core-js.js +29 -0
- package/test/node_modules/has-symbols/test/shams/get-own-property-symbols.js +29 -0
- package/test/node_modules/has-symbols/test/tests.js +58 -0
- package/test/node_modules/has-symbols/tsconfig.json +10 -0
- package/test/node_modules/has-tostringtag/.eslintrc +5 -0
- package/test/node_modules/has-tostringtag/.github/FUNDING.yml +12 -0
- package/test/node_modules/has-tostringtag/.nycrc +13 -0
- package/test/node_modules/has-tostringtag/CHANGELOG.md +42 -0
- package/test/node_modules/has-tostringtag/LICENSE +21 -0
- package/test/node_modules/has-tostringtag/README.md +46 -0
- package/test/node_modules/has-tostringtag/index.d.ts +3 -0
- package/test/node_modules/has-tostringtag/index.js +8 -0
- package/test/node_modules/has-tostringtag/package.json +108 -0
- package/test/node_modules/has-tostringtag/shams.d.ts +3 -0
- package/test/node_modules/has-tostringtag/shams.js +8 -0
- package/test/node_modules/has-tostringtag/test/index.js +21 -0
- package/test/node_modules/has-tostringtag/test/shams/core-js.js +31 -0
- package/test/node_modules/has-tostringtag/test/shams/get-own-property-symbols.js +30 -0
- package/test/node_modules/has-tostringtag/test/tests.js +15 -0
- package/test/node_modules/has-tostringtag/tsconfig.json +49 -0
- package/test/node_modules/hasown/.eslintrc +5 -0
- package/test/node_modules/hasown/.github/FUNDING.yml +12 -0
- package/test/node_modules/hasown/.nycrc +13 -0
- package/test/node_modules/hasown/CHANGELOG.md +40 -0
- package/test/node_modules/hasown/LICENSE +21 -0
- package/test/node_modules/hasown/README.md +40 -0
- package/test/node_modules/hasown/index.d.ts +3 -0
- package/test/node_modules/hasown/index.js +8 -0
- package/test/node_modules/hasown/package.json +92 -0
- package/test/node_modules/hasown/tsconfig.json +6 -0
- package/test/node_modules/he/LICENSE-MIT.txt +20 -0
- package/test/node_modules/he/README.md +379 -0
- package/test/node_modules/he/bin/he +148 -0
- package/test/node_modules/he/he.js +345 -0
- package/test/node_modules/he/man/he.1 +78 -0
- package/test/node_modules/he/package.json +58 -0
- package/test/node_modules/hexoid/dist/index.d.ts +1 -0
- package/test/node_modules/hexoid/dist/index.js +1 -0
- package/test/node_modules/hexoid/dist/index.mjs +1 -0
- package/test/node_modules/hexoid/license +9 -0
- package/test/node_modules/hexoid/package.json +45 -0
- package/test/node_modules/hexoid/readme.md +118 -0
- package/test/node_modules/is-binary-path/index.d.ts +17 -0
- package/test/node_modules/is-binary-path/index.js +7 -0
- package/test/node_modules/is-binary-path/license +9 -0
- package/test/node_modules/is-binary-path/package.json +40 -0
- package/test/node_modules/is-binary-path/readme.md +34 -0
- package/test/node_modules/is-extglob/LICENSE +21 -0
- package/test/node_modules/is-extglob/README.md +107 -0
- package/test/node_modules/is-extglob/index.js +20 -0
- package/test/node_modules/is-extglob/package.json +69 -0
- package/test/node_modules/is-fullwidth-code-point/index.d.ts +17 -0
- package/test/node_modules/is-fullwidth-code-point/index.js +50 -0
- package/test/node_modules/is-fullwidth-code-point/license +9 -0
- package/test/node_modules/is-fullwidth-code-point/package.json +42 -0
- package/test/node_modules/is-fullwidth-code-point/readme.md +39 -0
- package/test/node_modules/is-glob/LICENSE +21 -0
- package/test/node_modules/is-glob/README.md +206 -0
- package/test/node_modules/is-glob/index.js +150 -0
- package/test/node_modules/is-glob/package.json +81 -0
- package/test/node_modules/is-number/LICENSE +21 -0
- package/test/node_modules/is-number/README.md +187 -0
- package/test/node_modules/is-number/index.js +18 -0
- package/test/node_modules/is-number/package.json +82 -0
- package/test/node_modules/is-plain-obj/index.d.ts +29 -0
- package/test/node_modules/is-plain-obj/index.js +10 -0
- package/test/node_modules/is-plain-obj/license +9 -0
- package/test/node_modules/is-plain-obj/package.json +38 -0
- package/test/node_modules/is-plain-obj/readme.md +54 -0
- package/test/node_modules/is-unicode-supported/index.d.ts +14 -0
- package/test/node_modules/is-unicode-supported/index.js +13 -0
- package/test/node_modules/is-unicode-supported/license +9 -0
- package/test/node_modules/is-unicode-supported/package.json +41 -0
- package/test/node_modules/is-unicode-supported/readme.md +35 -0
- package/test/node_modules/isexe/LICENSE +15 -0
- package/test/node_modules/isexe/README.md +51 -0
- package/test/node_modules/isexe/index.js +57 -0
- package/test/node_modules/isexe/mode.js +41 -0
- package/test/node_modules/isexe/package.json +31 -0
- package/test/node_modules/isexe/test/basic.js +221 -0
- package/test/node_modules/isexe/windows.js +42 -0
- package/test/node_modules/jackspeak/LICENSE.md +55 -0
- package/test/node_modules/jackspeak/README.md +357 -0
- package/test/node_modules/jackspeak/dist/commonjs/index.d.ts +315 -0
- package/test/node_modules/jackspeak/dist/commonjs/index.d.ts.map +1 -0
- package/test/node_modules/jackspeak/dist/commonjs/index.js +1010 -0
- package/test/node_modules/jackspeak/dist/commonjs/index.js.map +1 -0
- package/test/node_modules/jackspeak/dist/commonjs/package.json +3 -0
- package/test/node_modules/jackspeak/dist/commonjs/parse-args-cjs.cjs.map +1 -0
- package/test/node_modules/jackspeak/dist/commonjs/parse-args-cjs.d.cts.map +1 -0
- package/test/node_modules/jackspeak/dist/commonjs/parse-args.d.ts +4 -0
- package/test/node_modules/jackspeak/dist/commonjs/parse-args.js +50 -0
- package/test/node_modules/jackspeak/dist/esm/index.d.ts +315 -0
- package/test/node_modules/jackspeak/dist/esm/index.d.ts.map +1 -0
- package/test/node_modules/jackspeak/dist/esm/index.js +1000 -0
- package/test/node_modules/jackspeak/dist/esm/index.js.map +1 -0
- package/test/node_modules/jackspeak/dist/esm/package.json +3 -0
- package/test/node_modules/jackspeak/dist/esm/parse-args.d.ts +4 -0
- package/test/node_modules/jackspeak/dist/esm/parse-args.d.ts.map +1 -0
- package/test/node_modules/jackspeak/dist/esm/parse-args.js +26 -0
- package/test/node_modules/jackspeak/dist/esm/parse-args.js.map +1 -0
- package/test/node_modules/jackspeak/package.json +95 -0
- package/test/node_modules/js-yaml/CHANGELOG.md +616 -0
- package/test/node_modules/js-yaml/LICENSE +21 -0
- package/test/node_modules/js-yaml/README.md +246 -0
- package/test/node_modules/js-yaml/bin/js-yaml.js +126 -0
- package/test/node_modules/js-yaml/dist/js-yaml.js +3874 -0
- package/test/node_modules/js-yaml/dist/js-yaml.min.js +2 -0
- package/test/node_modules/js-yaml/dist/js-yaml.mjs +3851 -0
- package/test/node_modules/js-yaml/index.js +47 -0
- package/test/node_modules/js-yaml/lib/common.js +59 -0
- package/test/node_modules/js-yaml/lib/dumper.js +965 -0
- package/test/node_modules/js-yaml/lib/exception.js +55 -0
- package/test/node_modules/js-yaml/lib/loader.js +1727 -0
- package/test/node_modules/js-yaml/lib/schema/core.js +11 -0
- package/test/node_modules/js-yaml/lib/schema/default.js +22 -0
- package/test/node_modules/js-yaml/lib/schema/failsafe.js +17 -0
- package/test/node_modules/js-yaml/lib/schema/json.js +19 -0
- package/test/node_modules/js-yaml/lib/schema.js +121 -0
- package/test/node_modules/js-yaml/lib/snippet.js +101 -0
- package/test/node_modules/js-yaml/lib/type/binary.js +125 -0
- package/test/node_modules/js-yaml/lib/type/bool.js +35 -0
- package/test/node_modules/js-yaml/lib/type/float.js +97 -0
- package/test/node_modules/js-yaml/lib/type/int.js +156 -0
- package/test/node_modules/js-yaml/lib/type/map.js +8 -0
- package/test/node_modules/js-yaml/lib/type/merge.js +12 -0
- package/test/node_modules/js-yaml/lib/type/null.js +35 -0
- package/test/node_modules/js-yaml/lib/type/omap.js +44 -0
- package/test/node_modules/js-yaml/lib/type/pairs.js +53 -0
- package/test/node_modules/js-yaml/lib/type/seq.js +8 -0
- package/test/node_modules/js-yaml/lib/type/set.js +29 -0
- package/test/node_modules/js-yaml/lib/type/str.js +8 -0
- package/test/node_modules/js-yaml/lib/type/timestamp.js +88 -0
- package/test/node_modules/js-yaml/lib/type.js +66 -0
- package/test/node_modules/js-yaml/package.json +66 -0
- package/test/node_modules/locate-path/index.d.ts +83 -0
- package/test/node_modules/locate-path/index.js +68 -0
- package/test/node_modules/locate-path/license +9 -0
- package/test/node_modules/locate-path/package.json +46 -0
- package/test/node_modules/locate-path/readme.md +125 -0
- package/test/node_modules/log-symbols/browser.js +8 -0
- package/test/node_modules/log-symbols/index.d.ts +25 -0
- package/test/node_modules/log-symbols/index.js +19 -0
- package/test/node_modules/log-symbols/license +9 -0
- package/test/node_modules/log-symbols/package.json +52 -0
- package/test/node_modules/log-symbols/readme.md +51 -0
- package/test/node_modules/loupe/LICENSE +9 -0
- package/test/node_modules/loupe/README.md +63 -0
- package/test/node_modules/loupe/lib/arguments.d.ts +3 -0
- package/test/node_modules/loupe/lib/arguments.d.ts.map +1 -0
- package/test/node_modules/loupe/lib/arguments.js +7 -0
- package/test/node_modules/loupe/lib/array.d.ts +3 -0
- package/test/node_modules/loupe/lib/array.d.ts.map +1 -0
- package/test/node_modules/loupe/lib/array.js +16 -0
- package/test/node_modules/loupe/lib/bigint.d.ts +3 -0
- package/test/node_modules/loupe/lib/bigint.d.ts.map +1 -0
- package/test/node_modules/loupe/lib/bigint.js +7 -0
- package/test/node_modules/loupe/lib/class.d.ts +5 -0
- package/test/node_modules/loupe/lib/class.d.ts.map +1 -0
- package/test/node_modules/loupe/lib/class.js +15 -0
- package/test/node_modules/loupe/lib/date.d.ts +3 -0
- package/test/node_modules/loupe/lib/date.d.ts.map +1 -0
- package/test/node_modules/loupe/lib/date.js +11 -0
- package/test/node_modules/loupe/lib/error.d.ts +3 -0
- package/test/node_modules/loupe/lib/error.d.ts.map +1 -0
- package/test/node_modules/loupe/lib/error.js +35 -0
- package/test/node_modules/loupe/lib/function.d.ts +7 -0
- package/test/node_modules/loupe/lib/function.d.ts.map +1 -0
- package/test/node_modules/loupe/lib/function.js +9 -0
- package/test/node_modules/loupe/lib/helpers.d.ts +7 -0
- package/test/node_modules/loupe/lib/helpers.d.ts.map +1 -0
- package/test/node_modules/loupe/lib/helpers.js +159 -0
- package/test/node_modules/loupe/lib/html.d.ts +5 -0
- package/test/node_modules/loupe/lib/html.d.ts.map +1 -0
- package/test/node_modules/loupe/lib/html.js +34 -0
- package/test/node_modules/loupe/lib/index.d.ts +7 -0
- package/test/node_modules/loupe/lib/index.d.ts.map +1 -0
- package/test/node_modules/loupe/lib/index.js +161 -0
- package/test/node_modules/loupe/lib/map.d.ts +3 -0
- package/test/node_modules/loupe/lib/map.d.ts.map +1 -0
- package/test/node_modules/loupe/lib/map.js +22 -0
- package/test/node_modules/loupe/lib/number.d.ts +3 -0
- package/test/node_modules/loupe/lib/number.d.ts.map +1 -0
- package/test/node_modules/loupe/lib/number.js +17 -0
- package/test/node_modules/loupe/lib/object.d.ts +3 -0
- package/test/node_modules/loupe/lib/object.d.ts.map +1 -0
- package/test/node_modules/loupe/lib/object.js +22 -0
- package/test/node_modules/loupe/lib/promise.d.ts +5 -0
- package/test/node_modules/loupe/lib/promise.d.ts.map +1 -0
- package/test/node_modules/loupe/lib/promise.js +18 -0
- package/test/node_modules/loupe/lib/regexp.d.ts +3 -0
- package/test/node_modules/loupe/lib/regexp.d.ts.map +1 -0
- package/test/node_modules/loupe/lib/regexp.js +7 -0
- package/test/node_modules/loupe/lib/set.d.ts +3 -0
- package/test/node_modules/loupe/lib/set.d.ts.map +1 -0
- package/test/node_modules/loupe/lib/set.js +15 -0
- package/test/node_modules/loupe/lib/string.d.ts +3 -0
- package/test/node_modules/loupe/lib/string.d.ts.map +1 -0
- package/test/node_modules/loupe/lib/string.js +24 -0
- package/test/node_modules/loupe/lib/symbol.d.ts +2 -0
- package/test/node_modules/loupe/lib/symbol.d.ts.map +1 -0
- package/test/node_modules/loupe/lib/symbol.js +6 -0
- package/test/node_modules/loupe/lib/typedarray.d.ts +5 -0
- package/test/node_modules/loupe/lib/typedarray.d.ts.map +1 -0
- package/test/node_modules/loupe/lib/typedarray.js +38 -0
- package/test/node_modules/loupe/lib/types.d.ts +15 -0
- package/test/node_modules/loupe/lib/types.d.ts.map +1 -0
- package/test/node_modules/loupe/lib/types.js +1 -0
- package/test/node_modules/loupe/loupe.js +640 -0
- package/test/node_modules/loupe/package.json +73 -0
- package/test/node_modules/lru-cache/LICENSE +15 -0
- package/test/node_modules/lru-cache/README.md +331 -0
- package/test/node_modules/lru-cache/dist/commonjs/index.d.ts +1277 -0
- package/test/node_modules/lru-cache/dist/commonjs/index.d.ts.map +1 -0
- package/test/node_modules/lru-cache/dist/commonjs/index.js +1546 -0
- package/test/node_modules/lru-cache/dist/commonjs/index.js.map +1 -0
- package/test/node_modules/lru-cache/dist/commonjs/index.min.js +2 -0
- package/test/node_modules/lru-cache/dist/commonjs/index.min.js.map +7 -0
- package/test/node_modules/lru-cache/dist/commonjs/package.json +3 -0
- package/test/node_modules/lru-cache/dist/esm/index.d.ts +1277 -0
- package/test/node_modules/lru-cache/dist/esm/index.d.ts.map +1 -0
- package/test/node_modules/lru-cache/dist/esm/index.js +1542 -0
- package/test/node_modules/lru-cache/dist/esm/index.js.map +1 -0
- package/test/node_modules/lru-cache/dist/esm/index.min.js +2 -0
- package/test/node_modules/lru-cache/dist/esm/index.min.js.map +7 -0
- package/test/node_modules/lru-cache/dist/esm/package.json +3 -0
- package/test/node_modules/lru-cache/package.json +116 -0
- package/test/node_modules/math-intrinsics/.eslintrc +16 -0
- package/test/node_modules/math-intrinsics/.github/FUNDING.yml +12 -0
- package/test/node_modules/math-intrinsics/CHANGELOG.md +24 -0
- package/test/node_modules/math-intrinsics/LICENSE +21 -0
- package/test/node_modules/math-intrinsics/README.md +50 -0
- package/test/node_modules/math-intrinsics/abs.d.ts +1 -0
- package/test/node_modules/math-intrinsics/abs.js +4 -0
- package/test/node_modules/math-intrinsics/constants/maxArrayLength.d.ts +3 -0
- package/test/node_modules/math-intrinsics/constants/maxArrayLength.js +4 -0
- package/test/node_modules/math-intrinsics/constants/maxSafeInteger.d.ts +3 -0
- package/test/node_modules/math-intrinsics/constants/maxSafeInteger.js +5 -0
- package/test/node_modules/math-intrinsics/constants/maxValue.d.ts +3 -0
- package/test/node_modules/math-intrinsics/constants/maxValue.js +5 -0
- package/test/node_modules/math-intrinsics/floor.d.ts +1 -0
- package/test/node_modules/math-intrinsics/floor.js +4 -0
- package/test/node_modules/math-intrinsics/isFinite.d.ts +3 -0
- package/test/node_modules/math-intrinsics/isFinite.js +12 -0
- package/test/node_modules/math-intrinsics/isInteger.d.ts +3 -0
- package/test/node_modules/math-intrinsics/isInteger.js +16 -0
- package/test/node_modules/math-intrinsics/isNaN.d.ts +1 -0
- package/test/node_modules/math-intrinsics/isNaN.js +6 -0
- package/test/node_modules/math-intrinsics/isNegativeZero.d.ts +3 -0
- package/test/node_modules/math-intrinsics/isNegativeZero.js +6 -0
- package/test/node_modules/math-intrinsics/max.d.ts +1 -0
- package/test/node_modules/math-intrinsics/max.js +4 -0
- package/test/node_modules/math-intrinsics/min.d.ts +1 -0
- package/test/node_modules/math-intrinsics/min.js +4 -0
- package/test/node_modules/math-intrinsics/mod.d.ts +3 -0
- package/test/node_modules/math-intrinsics/mod.js +9 -0
- package/test/node_modules/math-intrinsics/package.json +86 -0
- package/test/node_modules/math-intrinsics/pow.d.ts +1 -0
- package/test/node_modules/math-intrinsics/pow.js +4 -0
- package/test/node_modules/math-intrinsics/round.d.ts +1 -0
- package/test/node_modules/math-intrinsics/round.js +4 -0
- package/test/node_modules/math-intrinsics/sign.d.ts +3 -0
- package/test/node_modules/math-intrinsics/sign.js +11 -0
- package/test/node_modules/math-intrinsics/test/index.js +192 -0
- package/test/node_modules/math-intrinsics/tsconfig.json +3 -0
- package/test/node_modules/methods/HISTORY.md +29 -0
- package/test/node_modules/methods/LICENSE +24 -0
- package/test/node_modules/methods/README.md +51 -0
- package/test/node_modules/methods/index.js +69 -0
- package/test/node_modules/methods/package.json +36 -0
- package/test/node_modules/mime/CHANGELOG.md +296 -0
- package/test/node_modules/mime/LICENSE +21 -0
- package/test/node_modules/mime/Mime.js +97 -0
- package/test/node_modules/mime/README.md +187 -0
- package/test/node_modules/mime/cli.js +46 -0
- package/test/node_modules/mime/index.js +4 -0
- package/test/node_modules/mime/lite.js +4 -0
- package/test/node_modules/mime/package.json +52 -0
- package/test/node_modules/mime/types/other.js +1 -0
- package/test/node_modules/mime/types/standard.js +1 -0
- package/test/node_modules/mime-db/HISTORY.md +507 -0
- package/test/node_modules/mime-db/LICENSE +23 -0
- package/test/node_modules/mime-db/README.md +100 -0
- package/test/node_modules/mime-db/db.json +8519 -0
- package/test/node_modules/mime-db/index.js +12 -0
- package/test/node_modules/mime-db/package.json +60 -0
- package/test/node_modules/mime-types/HISTORY.md +397 -0
- package/test/node_modules/mime-types/LICENSE +23 -0
- package/test/node_modules/mime-types/README.md +113 -0
- package/test/node_modules/mime-types/index.js +188 -0
- package/test/node_modules/mime-types/package.json +44 -0
- package/test/node_modules/minimatch/LICENSE +15 -0
- package/test/node_modules/minimatch/README.md +259 -0
- package/test/node_modules/minimatch/lib/path.js +4 -0
- package/test/node_modules/minimatch/minimatch.js +944 -0
- package/test/node_modules/minimatch/package.json +35 -0
- package/test/node_modules/minipass/LICENSE +15 -0
- package/test/node_modules/minipass/README.md +825 -0
- package/test/node_modules/minipass/dist/commonjs/index.d.ts +549 -0
- package/test/node_modules/minipass/dist/commonjs/index.d.ts.map +1 -0
- package/test/node_modules/minipass/dist/commonjs/index.js +1028 -0
- package/test/node_modules/minipass/dist/commonjs/index.js.map +1 -0
- package/test/node_modules/minipass/dist/commonjs/package.json +3 -0
- package/test/node_modules/minipass/dist/esm/index.d.ts +549 -0
- package/test/node_modules/minipass/dist/esm/index.d.ts.map +1 -0
- package/test/node_modules/minipass/dist/esm/index.js +1018 -0
- package/test/node_modules/minipass/dist/esm/index.js.map +1 -0
- package/test/node_modules/minipass/dist/esm/package.json +3 -0
- package/test/node_modules/minipass/package.json +82 -0
- package/test/node_modules/mocha/LICENSE +22 -0
- package/test/node_modules/mocha/README.md +74 -0
- package/test/node_modules/mocha/bin/_mocha +10 -0
- package/test/node_modules/mocha/bin/mocha.js +142 -0
- package/test/node_modules/mocha/browser-entry.js +226 -0
- package/test/node_modules/mocha/index.js +3 -0
- package/test/node_modules/mocha/lib/browser/highlight-tags.js +39 -0
- package/test/node_modules/mocha/lib/browser/parse-query.js +24 -0
- package/test/node_modules/mocha/lib/browser/template.html +20 -0
- package/test/node_modules/mocha/lib/cli/cli.js +93 -0
- package/test/node_modules/mocha/lib/cli/collect-files.js +137 -0
- package/test/node_modules/mocha/lib/cli/commands.js +14 -0
- package/test/node_modules/mocha/lib/cli/config.js +100 -0
- package/test/node_modules/mocha/lib/cli/index.js +3 -0
- package/test/node_modules/mocha/lib/cli/init.js +36 -0
- package/test/node_modules/mocha/lib/cli/lookup-files.js +155 -0
- package/test/node_modules/mocha/lib/cli/node-flags.js +85 -0
- package/test/node_modules/mocha/lib/cli/one-and-dones.js +69 -0
- package/test/node_modules/mocha/lib/cli/options.js +337 -0
- package/test/node_modules/mocha/lib/cli/run-helpers.js +304 -0
- package/test/node_modules/mocha/lib/cli/run-option-metadata.js +137 -0
- package/test/node_modules/mocha/lib/cli/run.js +380 -0
- package/test/node_modules/mocha/lib/cli/watch-run.js +377 -0
- package/test/node_modules/mocha/lib/context.js +86 -0
- package/test/node_modules/mocha/lib/errors.js +563 -0
- package/test/node_modules/mocha/lib/hook.js +89 -0
- package/test/node_modules/mocha/lib/interfaces/bdd.js +114 -0
- package/test/node_modules/mocha/lib/interfaces/common.js +193 -0
- package/test/node_modules/mocha/lib/interfaces/exports.js +60 -0
- package/test/node_modules/mocha/lib/interfaces/index.js +6 -0
- package/test/node_modules/mocha/lib/interfaces/qunit.js +98 -0
- package/test/node_modules/mocha/lib/interfaces/tdd.js +106 -0
- package/test/node_modules/mocha/lib/mocha.js +1334 -0
- package/test/node_modules/mocha/lib/mocharc.json +10 -0
- package/test/node_modules/mocha/lib/nodejs/buffered-worker-pool.js +188 -0
- package/test/node_modules/mocha/lib/nodejs/esm-utils.js +106 -0
- package/test/node_modules/mocha/lib/nodejs/file-unloader.js +15 -0
- package/test/node_modules/mocha/lib/nodejs/parallel-buffered-runner.js +433 -0
- package/test/node_modules/mocha/lib/nodejs/reporters/parallel-buffered.js +165 -0
- package/test/node_modules/mocha/lib/nodejs/serializer.js +414 -0
- package/test/node_modules/mocha/lib/nodejs/worker.js +151 -0
- package/test/node_modules/mocha/lib/pending.js +16 -0
- package/test/node_modules/mocha/lib/plugin-loader.js +286 -0
- package/test/node_modules/mocha/lib/reporters/base.js +591 -0
- package/test/node_modules/mocha/lib/reporters/doc.js +95 -0
- package/test/node_modules/mocha/lib/reporters/dot.js +81 -0
- package/test/node_modules/mocha/lib/reporters/html.js +420 -0
- package/test/node_modules/mocha/lib/reporters/index.js +19 -0
- package/test/node_modules/mocha/lib/reporters/json-stream.js +92 -0
- package/test/node_modules/mocha/lib/reporters/json.js +162 -0
- package/test/node_modules/mocha/lib/reporters/landing.js +116 -0
- package/test/node_modules/mocha/lib/reporters/list.js +78 -0
- package/test/node_modules/mocha/lib/reporters/markdown.js +112 -0
- package/test/node_modules/mocha/lib/reporters/min.js +52 -0
- package/test/node_modules/mocha/lib/reporters/nyan.js +267 -0
- package/test/node_modules/mocha/lib/reporters/progress.js +104 -0
- package/test/node_modules/mocha/lib/reporters/spec.js +99 -0
- package/test/node_modules/mocha/lib/reporters/tap.js +293 -0
- package/test/node_modules/mocha/lib/reporters/xunit.js +218 -0
- package/test/node_modules/mocha/lib/runnable.js +474 -0
- package/test/node_modules/mocha/lib/runner.js +1267 -0
- package/test/node_modules/mocha/lib/stats-collector.js +83 -0
- package/test/node_modules/mocha/lib/suite.js +666 -0
- package/test/node_modules/mocha/lib/test.js +113 -0
- package/test/node_modules/mocha/lib/utils.js +698 -0
- package/test/node_modules/mocha/mocha.css +455 -0
- package/test/node_modules/mocha/mocha.js +20785 -0
- package/test/node_modules/mocha/mocha.js.map +1 -0
- package/test/node_modules/mocha/package.json +207 -0
- package/test/node_modules/ms/index.js +162 -0
- package/test/node_modules/ms/license.md +21 -0
- package/test/node_modules/ms/package.json +38 -0
- package/test/node_modules/ms/readme.md +59 -0
- package/test/node_modules/node-domexception/.history/README_20210527203617.md +2 -0
- package/test/node_modules/node-domexception/.history/README_20210527212714.md +41 -0
- package/test/node_modules/node-domexception/.history/README_20210527213345.md +36 -0
- package/test/node_modules/node-domexception/.history/README_20210527213411.md +36 -0
- package/test/node_modules/node-domexception/.history/README_20210527213803.md +36 -0
- package/test/node_modules/node-domexception/.history/README_20210527214323.md +38 -0
- package/test/node_modules/node-domexception/.history/README_20210527214408.md +38 -0
- package/test/node_modules/node-domexception/.history/index_20210527203842.js +0 -0
- package/test/node_modules/node-domexception/.history/index_20210527203947.js +8 -0
- package/test/node_modules/node-domexception/.history/index_20210527204259.js +9 -0
- package/test/node_modules/node-domexception/.history/index_20210527204418.js +9 -0
- package/test/node_modules/node-domexception/.history/index_20210527204756.js +11 -0
- package/test/node_modules/node-domexception/.history/index_20210527204833.js +11 -0
- package/test/node_modules/node-domexception/.history/index_20210527211208.js +15 -0
- package/test/node_modules/node-domexception/.history/index_20210527211248.js +15 -0
- package/test/node_modules/node-domexception/.history/index_20210527212722.js +23 -0
- package/test/node_modules/node-domexception/.history/index_20210527212731.js +23 -0
- package/test/node_modules/node-domexception/.history/index_20210527212746.js +15 -0
- package/test/node_modules/node-domexception/.history/index_20210527212900.js +16 -0
- package/test/node_modules/node-domexception/.history/index_20210527213022.js +16 -0
- package/test/node_modules/node-domexception/.history/index_20210527213822.js +16 -0
- package/test/node_modules/node-domexception/.history/index_20210527213843.js +17 -0
- package/test/node_modules/node-domexception/.history/index_20210527213852.js +17 -0
- package/test/node_modules/node-domexception/.history/index_20210527213910.js +16 -0
- package/test/node_modules/node-domexception/.history/index_20210527214034.js +16 -0
- package/test/node_modules/node-domexception/.history/index_20210527214643.js +41 -0
- package/test/node_modules/node-domexception/.history/index_20210527214654.js +41 -0
- package/test/node_modules/node-domexception/.history/index_20210527214700.js +16 -0
- package/test/node_modules/node-domexception/.history/package_20210527203733.json +19 -0
- package/test/node_modules/node-domexception/.history/package_20210527203825.json +16 -0
- package/test/node_modules/node-domexception/.history/package_20210527204621.json +19 -0
- package/test/node_modules/node-domexception/.history/package_20210527204913.json +25 -0
- package/test/node_modules/node-domexception/.history/package_20210527204925.json +25 -0
- package/test/node_modules/node-domexception/.history/package_20210527205145.json +29 -0
- package/test/node_modules/node-domexception/.history/package_20210527205156.json +29 -0
- package/test/node_modules/node-domexception/.history/test_20210527205603.js +0 -0
- package/test/node_modules/node-domexception/.history/test_20210527205957.js +3 -0
- package/test/node_modules/node-domexception/.history/test_20210527210021.js +3 -0
- package/test/node_modules/node-domexception/LICENSE +21 -0
- package/test/node_modules/node-domexception/README.md +46 -0
- package/test/node_modules/node-domexception/index.js +16 -0
- package/test/node_modules/node-domexception/package.json +29 -0
- package/test/node_modules/node-fetch/@types/index.d.ts +219 -0
- package/test/node_modules/node-fetch/LICENSE.md +22 -0
- package/test/node_modules/node-fetch/README.md +872 -0
- package/test/node_modules/node-fetch/package.json +131 -0
- package/test/node_modules/node-fetch/src/body.js +397 -0
- package/test/node_modules/node-fetch/src/errors/abort-error.js +10 -0
- package/test/node_modules/node-fetch/src/errors/base.js +17 -0
- package/test/node_modules/node-fetch/src/errors/fetch-error.js +26 -0
- package/test/node_modules/node-fetch/src/headers.js +267 -0
- package/test/node_modules/node-fetch/src/index.js +417 -0
- package/test/node_modules/node-fetch/src/request.js +313 -0
- package/test/node_modules/node-fetch/src/response.js +160 -0
- package/test/node_modules/node-fetch/src/utils/get-search.js +9 -0
- package/test/node_modules/node-fetch/src/utils/is-redirect.js +11 -0
- package/test/node_modules/node-fetch/src/utils/is.js +87 -0
- package/test/node_modules/node-fetch/src/utils/multipart-parser.js +432 -0
- package/test/node_modules/node-fetch/src/utils/referrer.js +340 -0
- package/test/node_modules/normalize-path/LICENSE +21 -0
- package/test/node_modules/normalize-path/README.md +127 -0
- package/test/node_modules/normalize-path/index.js +35 -0
- package/test/node_modules/normalize-path/package.json +77 -0
- package/test/node_modules/object-inspect/.eslintrc +53 -0
- package/test/node_modules/object-inspect/.github/FUNDING.yml +12 -0
- package/test/node_modules/object-inspect/.nycrc +13 -0
- package/test/node_modules/object-inspect/CHANGELOG.md +424 -0
- package/test/node_modules/object-inspect/LICENSE +21 -0
- package/test/node_modules/object-inspect/example/all.js +23 -0
- package/test/node_modules/object-inspect/example/circular.js +6 -0
- package/test/node_modules/object-inspect/example/fn.js +5 -0
- package/test/node_modules/object-inspect/example/inspect.js +10 -0
- package/test/node_modules/object-inspect/index.js +544 -0
- package/test/node_modules/object-inspect/package-support.json +20 -0
- package/test/node_modules/object-inspect/package.json +105 -0
- package/test/node_modules/object-inspect/readme.markdown +84 -0
- package/test/node_modules/object-inspect/test/bigint.js +58 -0
- package/test/node_modules/object-inspect/test/browser/dom.js +15 -0
- package/test/node_modules/object-inspect/test/circular.js +16 -0
- package/test/node_modules/object-inspect/test/deep.js +12 -0
- package/test/node_modules/object-inspect/test/element.js +53 -0
- package/test/node_modules/object-inspect/test/err.js +48 -0
- package/test/node_modules/object-inspect/test/fakes.js +29 -0
- package/test/node_modules/object-inspect/test/fn.js +76 -0
- package/test/node_modules/object-inspect/test/global.js +17 -0
- package/test/node_modules/object-inspect/test/has.js +15 -0
- package/test/node_modules/object-inspect/test/holes.js +15 -0
- package/test/node_modules/object-inspect/test/indent-option.js +271 -0
- package/test/node_modules/object-inspect/test/inspect.js +139 -0
- package/test/node_modules/object-inspect/test/lowbyte.js +12 -0
- package/test/node_modules/object-inspect/test/number.js +58 -0
- package/test/node_modules/object-inspect/test/quoteStyle.js +26 -0
- package/test/node_modules/object-inspect/test/toStringTag.js +40 -0
- package/test/node_modules/object-inspect/test/undef.js +12 -0
- package/test/node_modules/object-inspect/test/values.js +261 -0
- package/test/node_modules/object-inspect/test-core-js.js +26 -0
- package/test/node_modules/object-inspect/util.inspect.js +1 -0
- package/test/node_modules/once/LICENSE +15 -0
- package/test/node_modules/once/README.md +79 -0
- package/test/node_modules/once/once.js +42 -0
- package/test/node_modules/once/package.json +33 -0
- package/test/node_modules/p-limit/index.d.ts +42 -0
- package/test/node_modules/p-limit/index.js +71 -0
- package/test/node_modules/p-limit/license +9 -0
- package/test/node_modules/p-limit/package.json +52 -0
- package/test/node_modules/p-limit/readme.md +101 -0
- package/test/node_modules/p-locate/index.d.ts +53 -0
- package/test/node_modules/p-locate/index.js +50 -0
- package/test/node_modules/p-locate/license +9 -0
- package/test/node_modules/p-locate/package.json +54 -0
- package/test/node_modules/p-locate/readme.md +93 -0
- package/test/node_modules/package-json-from-dist/LICENSE.md +63 -0
- package/test/node_modules/package-json-from-dist/README.md +110 -0
- package/test/node_modules/package-json-from-dist/dist/commonjs/index.d.ts +89 -0
- package/test/node_modules/package-json-from-dist/dist/commonjs/index.d.ts.map +1 -0
- package/test/node_modules/package-json-from-dist/dist/commonjs/index.js +134 -0
- package/test/node_modules/package-json-from-dist/dist/commonjs/index.js.map +1 -0
- package/test/node_modules/package-json-from-dist/dist/commonjs/package.json +3 -0
- package/test/node_modules/package-json-from-dist/dist/esm/index.d.ts +89 -0
- package/test/node_modules/package-json-from-dist/dist/esm/index.d.ts.map +1 -0
- package/test/node_modules/package-json-from-dist/dist/esm/index.js +129 -0
- package/test/node_modules/package-json-from-dist/dist/esm/index.js.map +1 -0
- package/test/node_modules/package-json-from-dist/dist/esm/package.json +3 -0
- package/test/node_modules/package-json-from-dist/package.json +68 -0
- package/test/node_modules/path-exists/index.d.ts +28 -0
- package/test/node_modules/path-exists/index.js +23 -0
- package/test/node_modules/path-exists/license +9 -0
- package/test/node_modules/path-exists/package.json +39 -0
- package/test/node_modules/path-exists/readme.md +52 -0
- package/test/node_modules/path-key/index.d.ts +40 -0
- package/test/node_modules/path-key/index.js +16 -0
- package/test/node_modules/path-key/license +9 -0
- package/test/node_modules/path-key/package.json +39 -0
- package/test/node_modules/path-key/readme.md +61 -0
- package/test/node_modules/path-scurry/LICENSE.md +55 -0
- package/test/node_modules/path-scurry/README.md +636 -0
- package/test/node_modules/path-scurry/dist/commonjs/index.d.ts +1116 -0
- package/test/node_modules/path-scurry/dist/commonjs/index.d.ts.map +1 -0
- package/test/node_modules/path-scurry/dist/commonjs/index.js +2014 -0
- package/test/node_modules/path-scurry/dist/commonjs/index.js.map +1 -0
- package/test/node_modules/path-scurry/dist/commonjs/package.json +3 -0
- package/test/node_modules/path-scurry/dist/esm/index.d.ts +1116 -0
- package/test/node_modules/path-scurry/dist/esm/index.d.ts.map +1 -0
- package/test/node_modules/path-scurry/dist/esm/index.js +1979 -0
- package/test/node_modules/path-scurry/dist/esm/index.js.map +1 -0
- package/test/node_modules/path-scurry/dist/esm/package.json +3 -0
- package/test/node_modules/path-scurry/package.json +89 -0
- package/test/node_modules/pathval/LICENSE +16 -0
- package/test/node_modules/pathval/README.md +147 -0
- package/test/node_modules/pathval/index.js +292 -0
- package/test/node_modules/pathval/package.json +73 -0
- package/test/node_modules/pathval/pathval.js +1 -0
- package/test/node_modules/picomatch/CHANGELOG.md +136 -0
- package/test/node_modules/picomatch/LICENSE +21 -0
- package/test/node_modules/picomatch/README.md +708 -0
- package/test/node_modules/picomatch/index.js +3 -0
- package/test/node_modules/picomatch/lib/constants.js +179 -0
- package/test/node_modules/picomatch/lib/parse.js +1091 -0
- package/test/node_modules/picomatch/lib/picomatch.js +342 -0
- package/test/node_modules/picomatch/lib/scan.js +391 -0
- package/test/node_modules/picomatch/lib/utils.js +64 -0
- package/test/node_modules/picomatch/package.json +81 -0
- package/test/node_modules/qs/.editorconfig +46 -0
- package/test/node_modules/qs/.eslintrc +39 -0
- package/test/node_modules/qs/.github/FUNDING.yml +12 -0
- package/test/node_modules/qs/.nycrc +13 -0
- package/test/node_modules/qs/CHANGELOG.md +622 -0
- package/test/node_modules/qs/LICENSE.md +29 -0
- package/test/node_modules/qs/README.md +733 -0
- package/test/node_modules/qs/dist/qs.js +141 -0
- package/test/node_modules/qs/lib/formats.js +23 -0
- package/test/node_modules/qs/lib/index.js +11 -0
- package/test/node_modules/qs/lib/parse.js +328 -0
- package/test/node_modules/qs/lib/stringify.js +356 -0
- package/test/node_modules/qs/lib/utils.js +268 -0
- package/test/node_modules/qs/package.json +93 -0
- package/test/node_modules/qs/test/empty-keys-cases.js +267 -0
- package/test/node_modules/qs/test/parse.js +1276 -0
- package/test/node_modules/qs/test/stringify.js +1306 -0
- package/test/node_modules/qs/test/utils.js +262 -0
- package/test/node_modules/randombytes/.travis.yml +15 -0
- package/test/node_modules/randombytes/.zuul.yml +1 -0
- package/test/node_modules/randombytes/LICENSE +21 -0
- package/test/node_modules/randombytes/README.md +14 -0
- package/test/node_modules/randombytes/browser.js +50 -0
- package/test/node_modules/randombytes/index.js +1 -0
- package/test/node_modules/randombytes/package.json +36 -0
- package/test/node_modules/randombytes/test.js +81 -0
- package/test/node_modules/readdirp/LICENSE +21 -0
- package/test/node_modules/readdirp/README.md +122 -0
- package/test/node_modules/readdirp/index.d.ts +43 -0
- package/test/node_modules/readdirp/index.js +287 -0
- package/test/node_modules/readdirp/package.json +122 -0
- package/test/node_modules/require-directory/.jshintrc +67 -0
- package/test/node_modules/require-directory/.travis.yml +3 -0
- package/test/node_modules/require-directory/LICENSE +22 -0
- package/test/node_modules/require-directory/README.markdown +184 -0
- package/test/node_modules/require-directory/index.js +86 -0
- package/test/node_modules/require-directory/package.json +40 -0
- package/test/node_modules/safe-buffer/LICENSE +21 -0
- package/test/node_modules/safe-buffer/README.md +584 -0
- package/test/node_modules/safe-buffer/index.d.ts +187 -0
- package/test/node_modules/safe-buffer/index.js +65 -0
- package/test/node_modules/safe-buffer/package.json +51 -0
- package/test/node_modules/serialize-javascript/LICENSE +27 -0
- package/test/node_modules/serialize-javascript/README.md +143 -0
- package/test/node_modules/serialize-javascript/index.js +268 -0
- package/test/node_modules/serialize-javascript/package.json +36 -0
- package/test/node_modules/sessionless-node/README.md +44 -0
- package/test/node_modules/sessionless-node/package.json +26 -0
- package/test/node_modules/sessionless-node/sessionless.cjs +96 -0
- package/test/node_modules/sessionless-node/sessionless.js +95 -0
- package/test/node_modules/sessionless-node/test/sessionless.js +78 -0
- package/test/node_modules/shebang-command/index.js +19 -0
- package/test/node_modules/shebang-command/license +9 -0
- package/test/node_modules/shebang-command/package.json +34 -0
- package/test/node_modules/shebang-command/readme.md +34 -0
- package/test/node_modules/shebang-regex/index.d.ts +22 -0
- package/test/node_modules/shebang-regex/index.js +2 -0
- package/test/node_modules/shebang-regex/license +9 -0
- package/test/node_modules/shebang-regex/package.json +35 -0
- package/test/node_modules/shebang-regex/readme.md +33 -0
- package/test/node_modules/side-channel/.editorconfig +9 -0
- package/test/node_modules/side-channel/.eslintrc +12 -0
- package/test/node_modules/side-channel/.github/FUNDING.yml +12 -0
- package/test/node_modules/side-channel/.nycrc +13 -0
- package/test/node_modules/side-channel/CHANGELOG.md +110 -0
- package/test/node_modules/side-channel/LICENSE +21 -0
- package/test/node_modules/side-channel/README.md +61 -0
- package/test/node_modules/side-channel/index.d.ts +14 -0
- package/test/node_modules/side-channel/index.js +43 -0
- package/test/node_modules/side-channel/package.json +85 -0
- package/test/node_modules/side-channel/test/index.js +104 -0
- package/test/node_modules/side-channel/tsconfig.json +9 -0
- package/test/node_modules/side-channel-list/.editorconfig +9 -0
- package/test/node_modules/side-channel-list/.eslintrc +11 -0
- package/test/node_modules/side-channel-list/.github/FUNDING.yml +12 -0
- package/test/node_modules/side-channel-list/.nycrc +13 -0
- package/test/node_modules/side-channel-list/CHANGELOG.md +15 -0
- package/test/node_modules/side-channel-list/LICENSE +21 -0
- package/test/node_modules/side-channel-list/README.md +62 -0
- package/test/node_modules/side-channel-list/index.d.ts +13 -0
- package/test/node_modules/side-channel-list/index.js +113 -0
- package/test/node_modules/side-channel-list/list.d.ts +14 -0
- package/test/node_modules/side-channel-list/package.json +77 -0
- package/test/node_modules/side-channel-list/test/index.js +104 -0
- package/test/node_modules/side-channel-list/tsconfig.json +9 -0
- package/test/node_modules/side-channel-map/.editorconfig +9 -0
- package/test/node_modules/side-channel-map/.eslintrc +11 -0
- package/test/node_modules/side-channel-map/.github/FUNDING.yml +12 -0
- package/test/node_modules/side-channel-map/.nycrc +13 -0
- package/test/node_modules/side-channel-map/CHANGELOG.md +22 -0
- package/test/node_modules/side-channel-map/LICENSE +21 -0
- package/test/node_modules/side-channel-map/README.md +62 -0
- package/test/node_modules/side-channel-map/index.d.ts +15 -0
- package/test/node_modules/side-channel-map/index.js +68 -0
- package/test/node_modules/side-channel-map/package.json +80 -0
- package/test/node_modules/side-channel-map/test/index.js +114 -0
- package/test/node_modules/side-channel-map/tsconfig.json +9 -0
- package/test/node_modules/side-channel-weakmap/.editorconfig +9 -0
- package/test/node_modules/side-channel-weakmap/.eslintrc +12 -0
- package/test/node_modules/side-channel-weakmap/.github/FUNDING.yml +12 -0
- package/test/node_modules/side-channel-weakmap/.nycrc +13 -0
- package/test/node_modules/side-channel-weakmap/CHANGELOG.md +28 -0
- package/test/node_modules/side-channel-weakmap/LICENSE +21 -0
- package/test/node_modules/side-channel-weakmap/README.md +62 -0
- package/test/node_modules/side-channel-weakmap/index.d.ts +15 -0
- package/test/node_modules/side-channel-weakmap/index.js +84 -0
- package/test/node_modules/side-channel-weakmap/package.json +87 -0
- package/test/node_modules/side-channel-weakmap/test/index.js +114 -0
- package/test/node_modules/side-channel-weakmap/tsconfig.json +9 -0
- package/test/node_modules/signal-exit/LICENSE.txt +16 -0
- package/test/node_modules/signal-exit/README.md +74 -0
- package/test/node_modules/signal-exit/dist/cjs/browser.d.ts +12 -0
- package/test/node_modules/signal-exit/dist/cjs/browser.d.ts.map +1 -0
- package/test/node_modules/signal-exit/dist/cjs/browser.js +10 -0
- package/test/node_modules/signal-exit/dist/cjs/browser.js.map +1 -0
- package/test/node_modules/signal-exit/dist/cjs/index.d.ts +48 -0
- package/test/node_modules/signal-exit/dist/cjs/index.d.ts.map +1 -0
- package/test/node_modules/signal-exit/dist/cjs/index.js +279 -0
- package/test/node_modules/signal-exit/dist/cjs/index.js.map +1 -0
- package/test/node_modules/signal-exit/dist/cjs/package.json +3 -0
- package/test/node_modules/signal-exit/dist/cjs/signals.d.ts +29 -0
- package/test/node_modules/signal-exit/dist/cjs/signals.d.ts.map +1 -0
- package/test/node_modules/signal-exit/dist/cjs/signals.js +42 -0
- package/test/node_modules/signal-exit/dist/cjs/signals.js.map +1 -0
- package/test/node_modules/signal-exit/dist/mjs/browser.d.ts +12 -0
- package/test/node_modules/signal-exit/dist/mjs/browser.d.ts.map +1 -0
- package/test/node_modules/signal-exit/dist/mjs/browser.js +4 -0
- package/test/node_modules/signal-exit/dist/mjs/browser.js.map +1 -0
- package/test/node_modules/signal-exit/dist/mjs/index.d.ts +48 -0
- package/test/node_modules/signal-exit/dist/mjs/index.d.ts.map +1 -0
- package/test/node_modules/signal-exit/dist/mjs/index.js +275 -0
- package/test/node_modules/signal-exit/dist/mjs/index.js.map +1 -0
- package/test/node_modules/signal-exit/dist/mjs/package.json +3 -0
- package/test/node_modules/signal-exit/dist/mjs/signals.d.ts +29 -0
- package/test/node_modules/signal-exit/dist/mjs/signals.d.ts.map +1 -0
- package/test/node_modules/signal-exit/dist/mjs/signals.js +39 -0
- package/test/node_modules/signal-exit/dist/mjs/signals.js.map +1 -0
- package/test/node_modules/signal-exit/package.json +106 -0
- package/test/node_modules/string-width/index.d.ts +29 -0
- package/test/node_modules/string-width/index.js +54 -0
- package/test/node_modules/string-width/license +9 -0
- package/test/node_modules/string-width/package.json +59 -0
- package/test/node_modules/string-width/readme.md +67 -0
- package/test/node_modules/string-width-cjs/index.d.ts +29 -0
- package/test/node_modules/string-width-cjs/index.js +47 -0
- package/test/node_modules/string-width-cjs/license +9 -0
- package/test/node_modules/string-width-cjs/node_modules/ansi-regex/index.d.ts +37 -0
- package/test/node_modules/string-width-cjs/node_modules/ansi-regex/index.js +10 -0
- package/test/node_modules/string-width-cjs/node_modules/ansi-regex/license +9 -0
- package/test/node_modules/string-width-cjs/node_modules/ansi-regex/package.json +55 -0
- package/test/node_modules/string-width-cjs/node_modules/ansi-regex/readme.md +78 -0
- package/test/node_modules/string-width-cjs/node_modules/emoji-regex/LICENSE-MIT.txt +20 -0
- package/test/node_modules/string-width-cjs/node_modules/emoji-regex/README.md +73 -0
- package/test/node_modules/string-width-cjs/node_modules/emoji-regex/es2015/index.js +6 -0
- package/test/node_modules/string-width-cjs/node_modules/emoji-regex/es2015/text.js +6 -0
- package/test/node_modules/string-width-cjs/node_modules/emoji-regex/index.d.ts +23 -0
- package/test/node_modules/string-width-cjs/node_modules/emoji-regex/index.js +6 -0
- package/test/node_modules/string-width-cjs/node_modules/emoji-regex/package.json +50 -0
- package/test/node_modules/string-width-cjs/node_modules/emoji-regex/text.js +6 -0
- package/test/node_modules/string-width-cjs/node_modules/strip-ansi/index.d.ts +17 -0
- package/test/node_modules/string-width-cjs/node_modules/strip-ansi/index.js +4 -0
- package/test/node_modules/string-width-cjs/node_modules/strip-ansi/license +9 -0
- package/test/node_modules/string-width-cjs/node_modules/strip-ansi/package.json +54 -0
- package/test/node_modules/string-width-cjs/node_modules/strip-ansi/readme.md +46 -0
- package/test/node_modules/string-width-cjs/package.json +56 -0
- package/test/node_modules/string-width-cjs/readme.md +50 -0
- package/test/node_modules/strip-ansi/index.d.ts +15 -0
- package/test/node_modules/strip-ansi/index.js +14 -0
- package/test/node_modules/strip-ansi/license +9 -0
- package/test/node_modules/strip-ansi/package.json +57 -0
- package/test/node_modules/strip-ansi/readme.md +41 -0
- package/test/node_modules/strip-ansi-cjs/index.d.ts +17 -0
- package/test/node_modules/strip-ansi-cjs/index.js +4 -0
- package/test/node_modules/strip-ansi-cjs/license +9 -0
- package/test/node_modules/strip-ansi-cjs/node_modules/ansi-regex/index.d.ts +37 -0
- package/test/node_modules/strip-ansi-cjs/node_modules/ansi-regex/index.js +10 -0
- package/test/node_modules/strip-ansi-cjs/node_modules/ansi-regex/license +9 -0
- package/test/node_modules/strip-ansi-cjs/node_modules/ansi-regex/package.json +55 -0
- package/test/node_modules/strip-ansi-cjs/node_modules/ansi-regex/readme.md +78 -0
- package/test/node_modules/strip-ansi-cjs/package.json +54 -0
- package/test/node_modules/strip-ansi-cjs/readme.md +46 -0
- package/test/node_modules/strip-json-comments/index.d.ts +36 -0
- package/test/node_modules/strip-json-comments/index.js +77 -0
- package/test/node_modules/strip-json-comments/license +9 -0
- package/test/node_modules/strip-json-comments/package.json +47 -0
- package/test/node_modules/strip-json-comments/readme.md +78 -0
- package/test/node_modules/superagent/LICENSE +22 -0
- package/test/node_modules/superagent/README.md +273 -0
- package/test/node_modules/superagent/dist/superagent.js +3399 -0
- package/test/node_modules/superagent/dist/superagent.min.js +1 -0
- package/test/node_modules/superagent/lib/agent-base.js +28 -0
- package/test/node_modules/superagent/lib/client.js +949 -0
- package/test/node_modules/superagent/lib/node/agent.js +100 -0
- package/test/node_modules/superagent/lib/node/decompress.js +20 -0
- package/test/node_modules/superagent/lib/node/http2wrapper.js +158 -0
- package/test/node_modules/superagent/lib/node/index.js +1318 -0
- package/test/node_modules/superagent/lib/node/parsers/image.js +13 -0
- package/test/node_modules/superagent/lib/node/parsers/index.js +11 -0
- package/test/node_modules/superagent/lib/node/parsers/json.js +25 -0
- package/test/node_modules/superagent/lib/node/parsers/text.js +11 -0
- package/test/node_modules/superagent/lib/node/parsers/urlencoded.js +22 -0
- package/test/node_modules/superagent/lib/node/response.js +143 -0
- package/test/node_modules/superagent/lib/node/unzip.js +74 -0
- package/test/node_modules/superagent/lib/request-base.js +720 -0
- package/test/node_modules/superagent/lib/response-base.js +120 -0
- package/test/node_modules/superagent/lib/utils.js +126 -0
- package/test/node_modules/superagent/package.json +131 -0
- package/test/node_modules/supports-color/browser.js +24 -0
- package/test/node_modules/supports-color/index.js +152 -0
- package/test/node_modules/supports-color/license +9 -0
- package/test/node_modules/supports-color/package.json +58 -0
- package/test/node_modules/supports-color/readme.md +77 -0
- package/test/node_modules/to-regex-range/LICENSE +21 -0
- package/test/node_modules/to-regex-range/README.md +305 -0
- package/test/node_modules/to-regex-range/index.js +288 -0
- package/test/node_modules/to-regex-range/package.json +88 -0
- package/test/node_modules/uuid/CHANGELOG.md +274 -0
- package/test/node_modules/uuid/CONTRIBUTING.md +18 -0
- package/test/node_modules/uuid/LICENSE.md +9 -0
- package/test/node_modules/uuid/README.md +466 -0
- package/test/node_modules/uuid/dist/bin/uuid +2 -0
- package/test/node_modules/uuid/dist/commonjs-browser/index.js +79 -0
- package/test/node_modules/uuid/dist/commonjs-browser/md5.js +223 -0
- package/test/node_modules/uuid/dist/commonjs-browser/native.js +11 -0
- package/test/node_modules/uuid/dist/commonjs-browser/nil.js +8 -0
- package/test/node_modules/uuid/dist/commonjs-browser/parse.js +45 -0
- package/test/node_modules/uuid/dist/commonjs-browser/regex.js +8 -0
- package/test/node_modules/uuid/dist/commonjs-browser/rng.js +25 -0
- package/test/node_modules/uuid/dist/commonjs-browser/sha1.js +104 -0
- package/test/node_modules/uuid/dist/commonjs-browser/stringify.js +44 -0
- package/test/node_modules/uuid/dist/commonjs-browser/v1.js +107 -0
- package/test/node_modules/uuid/dist/commonjs-browser/v3.js +16 -0
- package/test/node_modules/uuid/dist/commonjs-browser/v35.js +80 -0
- package/test/node_modules/uuid/dist/commonjs-browser/v4.js +43 -0
- package/test/node_modules/uuid/dist/commonjs-browser/v5.js +16 -0
- package/test/node_modules/uuid/dist/commonjs-browser/validate.js +17 -0
- package/test/node_modules/uuid/dist/commonjs-browser/version.js +21 -0
- package/test/node_modules/uuid/dist/esm-browser/index.js +9 -0
- package/test/node_modules/uuid/dist/esm-browser/md5.js +215 -0
- package/test/node_modules/uuid/dist/esm-browser/native.js +4 -0
- package/test/node_modules/uuid/dist/esm-browser/nil.js +1 -0
- package/test/node_modules/uuid/dist/esm-browser/parse.js +35 -0
- package/test/node_modules/uuid/dist/esm-browser/regex.js +1 -0
- package/test/node_modules/uuid/dist/esm-browser/rng.js +18 -0
- package/test/node_modules/uuid/dist/esm-browser/sha1.js +96 -0
- package/test/node_modules/uuid/dist/esm-browser/stringify.js +33 -0
- package/test/node_modules/uuid/dist/esm-browser/v1.js +95 -0
- package/test/node_modules/uuid/dist/esm-browser/v3.js +4 -0
- package/test/node_modules/uuid/dist/esm-browser/v35.js +66 -0
- package/test/node_modules/uuid/dist/esm-browser/v4.js +29 -0
- package/test/node_modules/uuid/dist/esm-browser/v5.js +4 -0
- package/test/node_modules/uuid/dist/esm-browser/validate.js +7 -0
- package/test/node_modules/uuid/dist/esm-browser/version.js +11 -0
- package/test/node_modules/uuid/dist/esm-node/index.js +9 -0
- package/test/node_modules/uuid/dist/esm-node/md5.js +13 -0
- package/test/node_modules/uuid/dist/esm-node/native.js +4 -0
- package/test/node_modules/uuid/dist/esm-node/nil.js +1 -0
- package/test/node_modules/uuid/dist/esm-node/parse.js +35 -0
- package/test/node_modules/uuid/dist/esm-node/regex.js +1 -0
- package/test/node_modules/uuid/dist/esm-node/rng.js +12 -0
- package/test/node_modules/uuid/dist/esm-node/sha1.js +13 -0
- package/test/node_modules/uuid/dist/esm-node/stringify.js +33 -0
- package/test/node_modules/uuid/dist/esm-node/v1.js +95 -0
- package/test/node_modules/uuid/dist/esm-node/v3.js +4 -0
- package/test/node_modules/uuid/dist/esm-node/v35.js +66 -0
- package/test/node_modules/uuid/dist/esm-node/v4.js +29 -0
- package/test/node_modules/uuid/dist/esm-node/v5.js +4 -0
- package/test/node_modules/uuid/dist/esm-node/validate.js +7 -0
- package/test/node_modules/uuid/dist/esm-node/version.js +11 -0
- package/test/node_modules/uuid/dist/index.js +79 -0
- package/test/node_modules/uuid/dist/md5-browser.js +223 -0
- package/test/node_modules/uuid/dist/md5.js +23 -0
- package/test/node_modules/uuid/dist/native-browser.js +11 -0
- package/test/node_modules/uuid/dist/native.js +15 -0
- package/test/node_modules/uuid/dist/nil.js +8 -0
- package/test/node_modules/uuid/dist/parse.js +45 -0
- package/test/node_modules/uuid/dist/regex.js +8 -0
- package/test/node_modules/uuid/dist/rng-browser.js +25 -0
- package/test/node_modules/uuid/dist/rng.js +24 -0
- package/test/node_modules/uuid/dist/sha1-browser.js +104 -0
- package/test/node_modules/uuid/dist/sha1.js +23 -0
- package/test/node_modules/uuid/dist/stringify.js +44 -0
- package/test/node_modules/uuid/dist/uuid-bin.js +85 -0
- package/test/node_modules/uuid/dist/v1.js +107 -0
- package/test/node_modules/uuid/dist/v3.js +16 -0
- package/test/node_modules/uuid/dist/v35.js +80 -0
- package/test/node_modules/uuid/dist/v4.js +43 -0
- package/test/node_modules/uuid/dist/v5.js +16 -0
- package/test/node_modules/uuid/dist/validate.js +17 -0
- package/test/node_modules/uuid/dist/version.js +21 -0
- package/test/node_modules/uuid/package.json +135 -0
- package/test/node_modules/uuid/wrapper.mjs +10 -0
- package/test/node_modules/web-streams-polyfill/LICENSE +22 -0
- package/test/node_modules/web-streams-polyfill/README.md +110 -0
- package/test/node_modules/web-streams-polyfill/dist/polyfill.es2018.js +4765 -0
- package/test/node_modules/web-streams-polyfill/dist/polyfill.es2018.js.map +1 -0
- package/test/node_modules/web-streams-polyfill/dist/polyfill.es2018.min.js +9 -0
- package/test/node_modules/web-streams-polyfill/dist/polyfill.es2018.min.js.map +1 -0
- package/test/node_modules/web-streams-polyfill/dist/polyfill.es2018.mjs +4745 -0
- package/test/node_modules/web-streams-polyfill/dist/polyfill.es2018.mjs.map +1 -0
- package/test/node_modules/web-streams-polyfill/dist/polyfill.es6.js +4838 -0
- package/test/node_modules/web-streams-polyfill/dist/polyfill.es6.js.map +1 -0
- package/test/node_modules/web-streams-polyfill/dist/polyfill.es6.min.js +9 -0
- package/test/node_modules/web-streams-polyfill/dist/polyfill.es6.min.js.map +1 -0
- package/test/node_modules/web-streams-polyfill/dist/polyfill.es6.mjs +4818 -0
- package/test/node_modules/web-streams-polyfill/dist/polyfill.es6.mjs.map +1 -0
- package/test/node_modules/web-streams-polyfill/dist/polyfill.js +5011 -0
- package/test/node_modules/web-streams-polyfill/dist/polyfill.js.map +1 -0
- package/test/node_modules/web-streams-polyfill/dist/polyfill.min.js +9 -0
- package/test/node_modules/web-streams-polyfill/dist/polyfill.min.js.map +1 -0
- package/test/node_modules/web-streams-polyfill/dist/polyfill.mjs +4991 -0
- package/test/node_modules/web-streams-polyfill/dist/polyfill.mjs.map +1 -0
- package/test/node_modules/web-streams-polyfill/dist/ponyfill.es2018.js +4737 -0
- package/test/node_modules/web-streams-polyfill/dist/ponyfill.es2018.js.map +1 -0
- package/test/node_modules/web-streams-polyfill/dist/ponyfill.es2018.mjs +4717 -0
- package/test/node_modules/web-streams-polyfill/dist/ponyfill.es2018.mjs.map +1 -0
- package/test/node_modules/web-streams-polyfill/dist/ponyfill.es6.js +4810 -0
- package/test/node_modules/web-streams-polyfill/dist/ponyfill.es6.js.map +1 -0
- package/test/node_modules/web-streams-polyfill/dist/ponyfill.es6.mjs +4790 -0
- package/test/node_modules/web-streams-polyfill/dist/ponyfill.es6.mjs.map +1 -0
- package/test/node_modules/web-streams-polyfill/dist/ponyfill.js +4983 -0
- package/test/node_modules/web-streams-polyfill/dist/ponyfill.js.map +1 -0
- package/test/node_modules/web-streams-polyfill/dist/ponyfill.mjs +4963 -0
- package/test/node_modules/web-streams-polyfill/dist/ponyfill.mjs.map +1 -0
- package/test/node_modules/web-streams-polyfill/dist/types/polyfill.d.ts +24 -0
- package/test/node_modules/web-streams-polyfill/dist/types/ponyfill.d.ts +780 -0
- package/test/node_modules/web-streams-polyfill/dist/types/ts3.6/polyfill.d.ts +28 -0
- package/test/node_modules/web-streams-polyfill/dist/types/ts3.6/ponyfill.d.ts +821 -0
- package/test/node_modules/web-streams-polyfill/dist/types/tsdoc-metadata.json +11 -0
- package/test/node_modules/web-streams-polyfill/es2018/package.json +14 -0
- package/test/node_modules/web-streams-polyfill/es6/package.json +14 -0
- package/test/node_modules/web-streams-polyfill/package.json +83 -0
- package/test/node_modules/web-streams-polyfill/ponyfill/es2018/package.json +13 -0
- package/test/node_modules/web-streams-polyfill/ponyfill/es6/package.json +13 -0
- package/test/node_modules/web-streams-polyfill/ponyfill/package.json +13 -0
- package/test/node_modules/which/CHANGELOG.md +166 -0
- package/test/node_modules/which/LICENSE +15 -0
- package/test/node_modules/which/README.md +54 -0
- package/test/node_modules/which/bin/node-which +52 -0
- package/test/node_modules/which/package.json +43 -0
- package/test/node_modules/which/which.js +125 -0
- package/test/node_modules/workerpool/HISTORY.md +330 -0
- package/test/node_modules/workerpool/LICENSE +201 -0
- package/test/node_modules/workerpool/README.md +529 -0
- package/test/node_modules/workerpool/dist/worker.js +318 -0
- package/test/node_modules/workerpool/dist/worker.js.map +1 -0
- package/test/node_modules/workerpool/dist/workerpool.js +1645 -0
- package/test/node_modules/workerpool/dist/workerpool.js.map +1 -0
- package/test/node_modules/workerpool/dist/workerpool.min.js +3 -0
- package/test/node_modules/workerpool/dist/workerpool.min.js.LICENSE.txt +24 -0
- package/test/node_modules/workerpool/dist/workerpool.min.js.map +1 -0
- package/test/node_modules/workerpool/package.json +51 -0
- package/test/node_modules/workerpool/src/Pool.js +452 -0
- package/test/node_modules/workerpool/src/Promise.js +279 -0
- package/test/node_modules/workerpool/src/WorkerHandler.js +508 -0
- package/test/node_modules/workerpool/src/debug-port-allocator.js +28 -0
- package/test/node_modules/workerpool/src/environment.js +36 -0
- package/test/node_modules/workerpool/src/generated/embeddedWorker.js +6 -0
- package/test/node_modules/workerpool/src/header.js +24 -0
- package/test/node_modules/workerpool/src/index.js +48 -0
- package/test/node_modules/workerpool/src/requireFoolWebpack.js +8 -0
- package/test/node_modules/workerpool/src/transfer.js +12 -0
- package/test/node_modules/workerpool/src/types.js +31 -0
- package/test/node_modules/workerpool/src/worker.js +263 -0
- package/test/node_modules/wrap-ansi/index.d.ts +41 -0
- package/test/node_modules/wrap-ansi/index.js +214 -0
- package/test/node_modules/wrap-ansi/license +9 -0
- package/test/node_modules/wrap-ansi/node_modules/ansi-styles/index.d.ts +236 -0
- package/test/node_modules/wrap-ansi/node_modules/ansi-styles/index.js +223 -0
- package/test/node_modules/wrap-ansi/node_modules/ansi-styles/license +9 -0
- package/test/node_modules/wrap-ansi/node_modules/ansi-styles/package.json +54 -0
- package/test/node_modules/wrap-ansi/node_modules/ansi-styles/readme.md +173 -0
- package/test/node_modules/wrap-ansi/package.json +69 -0
- package/test/node_modules/wrap-ansi/readme.md +91 -0
- package/test/node_modules/wrap-ansi-cjs/index.js +216 -0
- package/test/node_modules/wrap-ansi-cjs/license +9 -0
- package/test/node_modules/wrap-ansi-cjs/node_modules/ansi-regex/index.d.ts +37 -0
- package/test/node_modules/wrap-ansi-cjs/node_modules/ansi-regex/index.js +10 -0
- package/test/node_modules/wrap-ansi-cjs/node_modules/ansi-regex/license +9 -0
- package/test/node_modules/wrap-ansi-cjs/node_modules/ansi-regex/package.json +55 -0
- package/test/node_modules/wrap-ansi-cjs/node_modules/ansi-regex/readme.md +78 -0
- package/test/node_modules/wrap-ansi-cjs/node_modules/emoji-regex/LICENSE-MIT.txt +20 -0
- package/test/node_modules/wrap-ansi-cjs/node_modules/emoji-regex/README.md +73 -0
- package/test/node_modules/wrap-ansi-cjs/node_modules/emoji-regex/es2015/index.js +6 -0
- package/test/node_modules/wrap-ansi-cjs/node_modules/emoji-regex/es2015/text.js +6 -0
- package/test/node_modules/wrap-ansi-cjs/node_modules/emoji-regex/index.d.ts +23 -0
- package/test/node_modules/wrap-ansi-cjs/node_modules/emoji-regex/index.js +6 -0
- package/test/node_modules/wrap-ansi-cjs/node_modules/emoji-regex/package.json +50 -0
- package/test/node_modules/wrap-ansi-cjs/node_modules/emoji-regex/text.js +6 -0
- package/test/node_modules/wrap-ansi-cjs/node_modules/string-width/index.d.ts +29 -0
- package/test/node_modules/wrap-ansi-cjs/node_modules/string-width/index.js +47 -0
- package/test/node_modules/wrap-ansi-cjs/node_modules/string-width/license +9 -0
- package/test/node_modules/wrap-ansi-cjs/node_modules/string-width/package.json +56 -0
- package/test/node_modules/wrap-ansi-cjs/node_modules/string-width/readme.md +50 -0
- package/test/node_modules/wrap-ansi-cjs/node_modules/strip-ansi/index.d.ts +17 -0
- package/test/node_modules/wrap-ansi-cjs/node_modules/strip-ansi/index.js +4 -0
- package/test/node_modules/wrap-ansi-cjs/node_modules/strip-ansi/license +9 -0
- package/test/node_modules/wrap-ansi-cjs/node_modules/strip-ansi/package.json +54 -0
- package/test/node_modules/wrap-ansi-cjs/node_modules/strip-ansi/readme.md +46 -0
- package/test/node_modules/wrap-ansi-cjs/package.json +62 -0
- package/test/node_modules/wrap-ansi-cjs/readme.md +91 -0
- package/test/node_modules/wrappy/LICENSE +15 -0
- package/test/node_modules/wrappy/README.md +36 -0
- package/test/node_modules/wrappy/package.json +29 -0
- package/test/node_modules/wrappy/wrappy.js +33 -0
- package/test/node_modules/y18n/CHANGELOG.md +100 -0
- package/test/node_modules/y18n/LICENSE +13 -0
- package/test/node_modules/y18n/README.md +127 -0
- package/test/node_modules/y18n/build/index.cjs +203 -0
- package/test/node_modules/y18n/build/lib/cjs.js +6 -0
- package/test/node_modules/y18n/build/lib/index.js +174 -0
- package/test/node_modules/y18n/build/lib/platform-shims/node.js +19 -0
- package/test/node_modules/y18n/index.mjs +8 -0
- package/test/node_modules/y18n/package.json +70 -0
- package/test/node_modules/yargs/LICENSE +21 -0
- package/test/node_modules/yargs/README.md +204 -0
- package/test/node_modules/yargs/browser.d.ts +5 -0
- package/test/node_modules/yargs/browser.mjs +7 -0
- package/test/node_modules/yargs/build/index.cjs +1 -0
- package/test/node_modules/yargs/build/lib/argsert.js +62 -0
- package/test/node_modules/yargs/build/lib/command.js +449 -0
- package/test/node_modules/yargs/build/lib/completion-templates.js +48 -0
- package/test/node_modules/yargs/build/lib/completion.js +243 -0
- package/test/node_modules/yargs/build/lib/middleware.js +88 -0
- package/test/node_modules/yargs/build/lib/parse-command.js +32 -0
- package/test/node_modules/yargs/build/lib/typings/common-types.js +9 -0
- package/test/node_modules/yargs/build/lib/typings/yargs-parser-types.js +1 -0
- package/test/node_modules/yargs/build/lib/usage.js +584 -0
- package/test/node_modules/yargs/build/lib/utils/apply-extends.js +59 -0
- package/test/node_modules/yargs/build/lib/utils/is-promise.js +5 -0
- package/test/node_modules/yargs/build/lib/utils/levenshtein.js +34 -0
- package/test/node_modules/yargs/build/lib/utils/maybe-async-result.js +17 -0
- package/test/node_modules/yargs/build/lib/utils/obj-filter.js +10 -0
- package/test/node_modules/yargs/build/lib/utils/process-argv.js +17 -0
- package/test/node_modules/yargs/build/lib/utils/set-blocking.js +12 -0
- package/test/node_modules/yargs/build/lib/utils/which-module.js +10 -0
- package/test/node_modules/yargs/build/lib/validation.js +305 -0
- package/test/node_modules/yargs/build/lib/yargs-factory.js +1512 -0
- package/test/node_modules/yargs/build/lib/yerror.js +9 -0
- package/test/node_modules/yargs/helpers/helpers.mjs +10 -0
- package/test/node_modules/yargs/helpers/index.js +14 -0
- package/test/node_modules/yargs/helpers/package.json +3 -0
- package/test/node_modules/yargs/index.cjs +53 -0
- package/test/node_modules/yargs/index.mjs +8 -0
- package/test/node_modules/yargs/lib/platform-shims/browser.mjs +95 -0
- package/test/node_modules/yargs/lib/platform-shims/esm.mjs +73 -0
- package/test/node_modules/yargs/locales/be.json +46 -0
- package/test/node_modules/yargs/locales/cs.json +51 -0
- package/test/node_modules/yargs/locales/de.json +46 -0
- package/test/node_modules/yargs/locales/en.json +55 -0
- package/test/node_modules/yargs/locales/es.json +46 -0
- package/test/node_modules/yargs/locales/fi.json +49 -0
- package/test/node_modules/yargs/locales/fr.json +53 -0
- package/test/node_modules/yargs/locales/hi.json +49 -0
- package/test/node_modules/yargs/locales/hu.json +46 -0
- package/test/node_modules/yargs/locales/id.json +50 -0
- package/test/node_modules/yargs/locales/it.json +46 -0
- package/test/node_modules/yargs/locales/ja.json +51 -0
- package/test/node_modules/yargs/locales/ko.json +49 -0
- package/test/node_modules/yargs/locales/nb.json +44 -0
- package/test/node_modules/yargs/locales/nl.json +49 -0
- package/test/node_modules/yargs/locales/nn.json +44 -0
- package/test/node_modules/yargs/locales/pirate.json +13 -0
- package/test/node_modules/yargs/locales/pl.json +49 -0
- package/test/node_modules/yargs/locales/pt.json +45 -0
- package/test/node_modules/yargs/locales/pt_BR.json +48 -0
- package/test/node_modules/yargs/locales/ru.json +51 -0
- package/test/node_modules/yargs/locales/th.json +46 -0
- package/test/node_modules/yargs/locales/tr.json +48 -0
- package/test/node_modules/yargs/locales/uk_UA.json +51 -0
- package/test/node_modules/yargs/locales/uz.json +52 -0
- package/test/node_modules/yargs/locales/zh_CN.json +48 -0
- package/test/node_modules/yargs/locales/zh_TW.json +51 -0
- package/test/node_modules/yargs/node_modules/ansi-regex/index.d.ts +37 -0
- package/test/node_modules/yargs/node_modules/ansi-regex/index.js +10 -0
- package/test/node_modules/yargs/node_modules/ansi-regex/license +9 -0
- package/test/node_modules/yargs/node_modules/ansi-regex/package.json +55 -0
- package/test/node_modules/yargs/node_modules/ansi-regex/readme.md +78 -0
- package/test/node_modules/yargs/node_modules/emoji-regex/LICENSE-MIT.txt +20 -0
- package/test/node_modules/yargs/node_modules/emoji-regex/README.md +73 -0
- package/test/node_modules/yargs/node_modules/emoji-regex/es2015/index.js +6 -0
- package/test/node_modules/yargs/node_modules/emoji-regex/es2015/text.js +6 -0
- package/test/node_modules/yargs/node_modules/emoji-regex/index.d.ts +23 -0
- package/test/node_modules/yargs/node_modules/emoji-regex/index.js +6 -0
- package/test/node_modules/yargs/node_modules/emoji-regex/package.json +50 -0
- package/test/node_modules/yargs/node_modules/emoji-regex/text.js +6 -0
- package/test/node_modules/yargs/node_modules/string-width/index.d.ts +29 -0
- package/test/node_modules/yargs/node_modules/string-width/index.js +47 -0
- package/test/node_modules/yargs/node_modules/string-width/license +9 -0
- package/test/node_modules/yargs/node_modules/string-width/package.json +56 -0
- package/test/node_modules/yargs/node_modules/string-width/readme.md +50 -0
- package/test/node_modules/yargs/node_modules/strip-ansi/index.d.ts +17 -0
- package/test/node_modules/yargs/node_modules/strip-ansi/index.js +4 -0
- package/test/node_modules/yargs/node_modules/strip-ansi/license +9 -0
- package/test/node_modules/yargs/node_modules/strip-ansi/package.json +54 -0
- package/test/node_modules/yargs/node_modules/strip-ansi/readme.md +46 -0
- package/test/node_modules/yargs/package.json +123 -0
- package/test/node_modules/yargs/yargs +9 -0
- package/test/node_modules/yargs/yargs.mjs +10 -0
- package/test/node_modules/yargs-parser/CHANGELOG.md +308 -0
- package/test/node_modules/yargs-parser/LICENSE.txt +14 -0
- package/test/node_modules/yargs-parser/README.md +518 -0
- package/test/node_modules/yargs-parser/browser.js +29 -0
- package/test/node_modules/yargs-parser/build/index.cjs +1050 -0
- package/test/node_modules/yargs-parser/build/lib/index.js +62 -0
- package/test/node_modules/yargs-parser/build/lib/string-utils.js +65 -0
- package/test/node_modules/yargs-parser/build/lib/tokenize-arg-string.js +40 -0
- package/test/node_modules/yargs-parser/build/lib/yargs-parser-types.js +12 -0
- package/test/node_modules/yargs-parser/build/lib/yargs-parser.js +1045 -0
- package/test/node_modules/yargs-parser/package.json +92 -0
- package/test/node_modules/yargs-unparser/CHANGELOG.md +82 -0
- package/test/node_modules/yargs-unparser/LICENSE +21 -0
- package/test/node_modules/yargs-unparser/README.md +86 -0
- package/test/node_modules/yargs-unparser/index.js +166 -0
- package/test/node_modules/yargs-unparser/package.json +49 -0
- package/test/node_modules/yocto-queue/index.d.ts +56 -0
- package/test/node_modules/yocto-queue/index.js +68 -0
- package/test/node_modules/yocto-queue/license +9 -0
- package/test/node_modules/yocto-queue/package.json +43 -0
- package/test/node_modules/yocto-queue/readme.md +64 -0
- package/test/package-lock.json +1997 -0
- package/test/package.json +20 -0
- package/test/test.js +87 -0
|
@@ -0,0 +1,132 @@
|
|
|
1
|
+
/*! scure-base - MIT License (c) 2022 Paul Miller (paulmillr.com) */
|
|
2
|
+
/**
|
|
3
|
+
* @__NO_SIDE_EFFECTS__
|
|
4
|
+
*/
|
|
5
|
+
export declare function assertNumber(n: number): void;
|
|
6
|
+
export interface Coder<F, T> {
|
|
7
|
+
encode(from: F): T;
|
|
8
|
+
decode(to: T): F;
|
|
9
|
+
}
|
|
10
|
+
export interface BytesCoder extends Coder<Uint8Array, string> {
|
|
11
|
+
encode: (data: Uint8Array) => string;
|
|
12
|
+
decode: (str: string) => Uint8Array;
|
|
13
|
+
}
|
|
14
|
+
type Chain = [Coder<any, any>, ...Coder<any, any>[]];
|
|
15
|
+
type Input<F> = F extends Coder<infer T, any> ? T : never;
|
|
16
|
+
type Output<F> = F extends Coder<any, infer T> ? T : never;
|
|
17
|
+
type First<T> = T extends [infer U, ...any[]] ? U : never;
|
|
18
|
+
type Last<T> = T extends [...any[], infer U] ? U : never;
|
|
19
|
+
type Tail<T> = T extends [any, ...infer U] ? U : never;
|
|
20
|
+
type AsChain<C extends Chain, Rest = Tail<C>> = {
|
|
21
|
+
[K in keyof C]: Coder<Input<C[K]>, Input<K extends keyof Rest ? Rest[K] : any>>;
|
|
22
|
+
};
|
|
23
|
+
/**
|
|
24
|
+
* @__NO_SIDE_EFFECTS__
|
|
25
|
+
*/
|
|
26
|
+
declare function chain<T extends Chain & AsChain<T>>(...args: T): Coder<Input<First<T>>, Output<Last<T>>>;
|
|
27
|
+
type Alphabet = string[] | string;
|
|
28
|
+
/**
|
|
29
|
+
* Encodes integer radix representation to array of strings using alphabet and back
|
|
30
|
+
* @__NO_SIDE_EFFECTS__
|
|
31
|
+
*/
|
|
32
|
+
declare function alphabet(alphabet: Alphabet): Coder<number[], string[]>;
|
|
33
|
+
/**
|
|
34
|
+
* @__NO_SIDE_EFFECTS__
|
|
35
|
+
*/
|
|
36
|
+
declare function join(separator?: string): Coder<string[], string>;
|
|
37
|
+
/**
|
|
38
|
+
* Pad strings array so it has integer number of bits
|
|
39
|
+
* @__NO_SIDE_EFFECTS__
|
|
40
|
+
*/
|
|
41
|
+
declare function padding(bits: number, chr?: string): Coder<string[], string[]>;
|
|
42
|
+
/**
|
|
43
|
+
* Slow: O(n^2) time complexity
|
|
44
|
+
* @__NO_SIDE_EFFECTS__
|
|
45
|
+
*/
|
|
46
|
+
declare function convertRadix(data: number[], from: number, to: number): number[];
|
|
47
|
+
/**
|
|
48
|
+
* Implemented with numbers, because BigInt is 5x slower
|
|
49
|
+
* @__NO_SIDE_EFFECTS__
|
|
50
|
+
*/
|
|
51
|
+
declare function convertRadix2(data: number[], from: number, to: number, padding: boolean): number[];
|
|
52
|
+
/**
|
|
53
|
+
* @__NO_SIDE_EFFECTS__
|
|
54
|
+
*/
|
|
55
|
+
declare function radix(num: number): Coder<Uint8Array, number[]>;
|
|
56
|
+
/**
|
|
57
|
+
* If both bases are power of same number (like `2**8 <-> 2**64`),
|
|
58
|
+
* there is a linear algorithm. For now we have implementation for power-of-two bases only.
|
|
59
|
+
* @__NO_SIDE_EFFECTS__
|
|
60
|
+
*/
|
|
61
|
+
declare function radix2(bits: number, revPadding?: boolean): Coder<Uint8Array, number[]>;
|
|
62
|
+
/**
|
|
63
|
+
* @__NO_SIDE_EFFECTS__
|
|
64
|
+
*/
|
|
65
|
+
declare function checksum(len: number, fn: (data: Uint8Array) => Uint8Array): Coder<Uint8Array, Uint8Array>;
|
|
66
|
+
export declare const utils: {
|
|
67
|
+
alphabet: typeof alphabet;
|
|
68
|
+
chain: typeof chain;
|
|
69
|
+
checksum: typeof checksum;
|
|
70
|
+
convertRadix: typeof convertRadix;
|
|
71
|
+
convertRadix2: typeof convertRadix2;
|
|
72
|
+
radix: typeof radix;
|
|
73
|
+
radix2: typeof radix2;
|
|
74
|
+
join: typeof join;
|
|
75
|
+
padding: typeof padding;
|
|
76
|
+
};
|
|
77
|
+
export declare const base16: BytesCoder;
|
|
78
|
+
export declare const base32: BytesCoder;
|
|
79
|
+
export declare const base32nopad: BytesCoder;
|
|
80
|
+
export declare const base32hex: BytesCoder;
|
|
81
|
+
export declare const base32hexnopad: BytesCoder;
|
|
82
|
+
export declare const base32crockford: BytesCoder;
|
|
83
|
+
export declare const base64: BytesCoder;
|
|
84
|
+
export declare const base64nopad: BytesCoder;
|
|
85
|
+
export declare const base64url: BytesCoder;
|
|
86
|
+
export declare const base64urlnopad: BytesCoder;
|
|
87
|
+
export declare const base58: BytesCoder;
|
|
88
|
+
export declare const base58flickr: BytesCoder;
|
|
89
|
+
export declare const base58xrp: BytesCoder;
|
|
90
|
+
export declare const base58xmr: BytesCoder;
|
|
91
|
+
export declare const createBase58check: (sha256: (data: Uint8Array) => Uint8Array) => BytesCoder;
|
|
92
|
+
export declare const base58check: (sha256: (data: Uint8Array) => Uint8Array) => BytesCoder;
|
|
93
|
+
export interface Bech32Decoded<Prefix extends string = string> {
|
|
94
|
+
prefix: Prefix;
|
|
95
|
+
words: number[];
|
|
96
|
+
}
|
|
97
|
+
export interface Bech32DecodedWithArray<Prefix extends string = string> {
|
|
98
|
+
prefix: Prefix;
|
|
99
|
+
words: number[];
|
|
100
|
+
bytes: Uint8Array;
|
|
101
|
+
}
|
|
102
|
+
export interface Bech32 {
|
|
103
|
+
encode<Prefix extends string>(prefix: Prefix, words: number[] | Uint8Array, limit?: number | false): `${Lowercase<Prefix>}1${string}`;
|
|
104
|
+
decode<Prefix extends string>(str: `${Prefix}1${string}`, limit?: number | false): Bech32Decoded<Prefix>;
|
|
105
|
+
encodeFromBytes(prefix: string, bytes: Uint8Array): string;
|
|
106
|
+
decodeToBytes(str: string): Bech32DecodedWithArray;
|
|
107
|
+
decodeUnsafe(str: string, limit?: number | false): void | Bech32Decoded<string>;
|
|
108
|
+
fromWords(to: number[]): Uint8Array;
|
|
109
|
+
fromWordsUnsafe(to: number[]): void | Uint8Array;
|
|
110
|
+
toWords(from: Uint8Array): number[];
|
|
111
|
+
}
|
|
112
|
+
export declare const bech32: Bech32;
|
|
113
|
+
export declare const bech32m: Bech32;
|
|
114
|
+
export declare const utf8: BytesCoder;
|
|
115
|
+
export declare const hex: BytesCoder;
|
|
116
|
+
declare const CODERS: {
|
|
117
|
+
utf8: BytesCoder;
|
|
118
|
+
hex: BytesCoder;
|
|
119
|
+
base16: BytesCoder;
|
|
120
|
+
base32: BytesCoder;
|
|
121
|
+
base64: BytesCoder;
|
|
122
|
+
base64url: BytesCoder;
|
|
123
|
+
base58: BytesCoder;
|
|
124
|
+
base58xmr: BytesCoder;
|
|
125
|
+
};
|
|
126
|
+
type CoderType = keyof typeof CODERS;
|
|
127
|
+
export declare const bytesToString: (type: CoderType, bytes: Uint8Array) => string;
|
|
128
|
+
export declare const str: (type: CoderType, bytes: Uint8Array) => string;
|
|
129
|
+
export declare const stringToBytes: (type: CoderType, str: string) => Uint8Array;
|
|
130
|
+
export declare const bytes: (type: CoderType, str: string) => Uint8Array;
|
|
131
|
+
export {};
|
|
132
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../index.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,489 @@
|
|
|
1
|
+
/*! scure-base - MIT License (c) 2022 Paul Miller (paulmillr.com) */
|
|
2
|
+
// Utilities
|
|
3
|
+
/**
|
|
4
|
+
* @__NO_SIDE_EFFECTS__
|
|
5
|
+
*/
|
|
6
|
+
export function assertNumber(n) {
|
|
7
|
+
if (!Number.isSafeInteger(n))
|
|
8
|
+
throw new Error(`Wrong integer: ${n}`);
|
|
9
|
+
}
|
|
10
|
+
function isBytes(a) {
|
|
11
|
+
return (a instanceof Uint8Array ||
|
|
12
|
+
(a != null && typeof a === 'object' && a.constructor.name === 'Uint8Array'));
|
|
13
|
+
}
|
|
14
|
+
/**
|
|
15
|
+
* @__NO_SIDE_EFFECTS__
|
|
16
|
+
*/
|
|
17
|
+
function chain(...args) {
|
|
18
|
+
const id = (a) => a;
|
|
19
|
+
// Wrap call in closure so JIT can inline calls
|
|
20
|
+
const wrap = (a, b) => (c) => a(b(c));
|
|
21
|
+
// Construct chain of args[-1].encode(args[-2].encode([...]))
|
|
22
|
+
const encode = args.map((x) => x.encode).reduceRight(wrap, id);
|
|
23
|
+
// Construct chain of args[0].decode(args[1].decode(...))
|
|
24
|
+
const decode = args.map((x) => x.decode).reduce(wrap, id);
|
|
25
|
+
return { encode, decode };
|
|
26
|
+
}
|
|
27
|
+
/**
|
|
28
|
+
* Encodes integer radix representation to array of strings using alphabet and back
|
|
29
|
+
* @__NO_SIDE_EFFECTS__
|
|
30
|
+
*/
|
|
31
|
+
function alphabet(alphabet) {
|
|
32
|
+
return {
|
|
33
|
+
encode: (digits) => {
|
|
34
|
+
if (!Array.isArray(digits) || (digits.length && typeof digits[0] !== 'number'))
|
|
35
|
+
throw new Error('alphabet.encode input should be an array of numbers');
|
|
36
|
+
return digits.map((i) => {
|
|
37
|
+
assertNumber(i);
|
|
38
|
+
if (i < 0 || i >= alphabet.length)
|
|
39
|
+
throw new Error(`Digit index outside alphabet: ${i} (alphabet: ${alphabet.length})`);
|
|
40
|
+
return alphabet[i];
|
|
41
|
+
});
|
|
42
|
+
},
|
|
43
|
+
decode: (input) => {
|
|
44
|
+
if (!Array.isArray(input) || (input.length && typeof input[0] !== 'string'))
|
|
45
|
+
throw new Error('alphabet.decode input should be array of strings');
|
|
46
|
+
return input.map((letter) => {
|
|
47
|
+
if (typeof letter !== 'string')
|
|
48
|
+
throw new Error(`alphabet.decode: not string element=${letter}`);
|
|
49
|
+
const index = alphabet.indexOf(letter);
|
|
50
|
+
if (index === -1)
|
|
51
|
+
throw new Error(`Unknown letter: "${letter}". Allowed: ${alphabet}`);
|
|
52
|
+
return index;
|
|
53
|
+
});
|
|
54
|
+
},
|
|
55
|
+
};
|
|
56
|
+
}
|
|
57
|
+
/**
|
|
58
|
+
* @__NO_SIDE_EFFECTS__
|
|
59
|
+
*/
|
|
60
|
+
function join(separator = '') {
|
|
61
|
+
if (typeof separator !== 'string')
|
|
62
|
+
throw new Error('join separator should be string');
|
|
63
|
+
return {
|
|
64
|
+
encode: (from) => {
|
|
65
|
+
if (!Array.isArray(from) || (from.length && typeof from[0] !== 'string'))
|
|
66
|
+
throw new Error('join.encode input should be array of strings');
|
|
67
|
+
for (let i of from)
|
|
68
|
+
if (typeof i !== 'string')
|
|
69
|
+
throw new Error(`join.encode: non-string input=${i}`);
|
|
70
|
+
return from.join(separator);
|
|
71
|
+
},
|
|
72
|
+
decode: (to) => {
|
|
73
|
+
if (typeof to !== 'string')
|
|
74
|
+
throw new Error('join.decode input should be string');
|
|
75
|
+
return to.split(separator);
|
|
76
|
+
},
|
|
77
|
+
};
|
|
78
|
+
}
|
|
79
|
+
/**
|
|
80
|
+
* Pad strings array so it has integer number of bits
|
|
81
|
+
* @__NO_SIDE_EFFECTS__
|
|
82
|
+
*/
|
|
83
|
+
function padding(bits, chr = '=') {
|
|
84
|
+
assertNumber(bits);
|
|
85
|
+
if (typeof chr !== 'string')
|
|
86
|
+
throw new Error('padding chr should be string');
|
|
87
|
+
return {
|
|
88
|
+
encode(data) {
|
|
89
|
+
if (!Array.isArray(data) || (data.length && typeof data[0] !== 'string'))
|
|
90
|
+
throw new Error('padding.encode input should be array of strings');
|
|
91
|
+
for (let i of data)
|
|
92
|
+
if (typeof i !== 'string')
|
|
93
|
+
throw new Error(`padding.encode: non-string input=${i}`);
|
|
94
|
+
while ((data.length * bits) % 8)
|
|
95
|
+
data.push(chr);
|
|
96
|
+
return data;
|
|
97
|
+
},
|
|
98
|
+
decode(input) {
|
|
99
|
+
if (!Array.isArray(input) || (input.length && typeof input[0] !== 'string'))
|
|
100
|
+
throw new Error('padding.encode input should be array of strings');
|
|
101
|
+
for (let i of input)
|
|
102
|
+
if (typeof i !== 'string')
|
|
103
|
+
throw new Error(`padding.decode: non-string input=${i}`);
|
|
104
|
+
let end = input.length;
|
|
105
|
+
if ((end * bits) % 8)
|
|
106
|
+
throw new Error('Invalid padding: string should have whole number of bytes');
|
|
107
|
+
for (; end > 0 && input[end - 1] === chr; end--) {
|
|
108
|
+
if (!(((end - 1) * bits) % 8))
|
|
109
|
+
throw new Error('Invalid padding: string has too much padding');
|
|
110
|
+
}
|
|
111
|
+
return input.slice(0, end);
|
|
112
|
+
},
|
|
113
|
+
};
|
|
114
|
+
}
|
|
115
|
+
/**
|
|
116
|
+
* @__NO_SIDE_EFFECTS__
|
|
117
|
+
*/
|
|
118
|
+
function normalize(fn) {
|
|
119
|
+
if (typeof fn !== 'function')
|
|
120
|
+
throw new Error('normalize fn should be function');
|
|
121
|
+
return { encode: (from) => from, decode: (to) => fn(to) };
|
|
122
|
+
}
|
|
123
|
+
/**
|
|
124
|
+
* Slow: O(n^2) time complexity
|
|
125
|
+
* @__NO_SIDE_EFFECTS__
|
|
126
|
+
*/
|
|
127
|
+
function convertRadix(data, from, to) {
|
|
128
|
+
// base 1 is impossible
|
|
129
|
+
if (from < 2)
|
|
130
|
+
throw new Error(`convertRadix: wrong from=${from}, base cannot be less than 2`);
|
|
131
|
+
if (to < 2)
|
|
132
|
+
throw new Error(`convertRadix: wrong to=${to}, base cannot be less than 2`);
|
|
133
|
+
if (!Array.isArray(data))
|
|
134
|
+
throw new Error('convertRadix: data should be array');
|
|
135
|
+
if (!data.length)
|
|
136
|
+
return [];
|
|
137
|
+
let pos = 0;
|
|
138
|
+
const res = [];
|
|
139
|
+
const digits = Array.from(data);
|
|
140
|
+
digits.forEach((d) => {
|
|
141
|
+
assertNumber(d);
|
|
142
|
+
if (d < 0 || d >= from)
|
|
143
|
+
throw new Error(`Wrong integer: ${d}`);
|
|
144
|
+
});
|
|
145
|
+
while (true) {
|
|
146
|
+
let carry = 0;
|
|
147
|
+
let done = true;
|
|
148
|
+
for (let i = pos; i < digits.length; i++) {
|
|
149
|
+
const digit = digits[i];
|
|
150
|
+
const digitBase = from * carry + digit;
|
|
151
|
+
if (!Number.isSafeInteger(digitBase) ||
|
|
152
|
+
(from * carry) / from !== carry ||
|
|
153
|
+
digitBase - digit !== from * carry) {
|
|
154
|
+
throw new Error('convertRadix: carry overflow');
|
|
155
|
+
}
|
|
156
|
+
carry = digitBase % to;
|
|
157
|
+
const rounded = Math.floor(digitBase / to);
|
|
158
|
+
digits[i] = rounded;
|
|
159
|
+
if (!Number.isSafeInteger(rounded) || rounded * to + carry !== digitBase)
|
|
160
|
+
throw new Error('convertRadix: carry overflow');
|
|
161
|
+
if (!done)
|
|
162
|
+
continue;
|
|
163
|
+
else if (!rounded)
|
|
164
|
+
pos = i;
|
|
165
|
+
else
|
|
166
|
+
done = false;
|
|
167
|
+
}
|
|
168
|
+
res.push(carry);
|
|
169
|
+
if (done)
|
|
170
|
+
break;
|
|
171
|
+
}
|
|
172
|
+
for (let i = 0; i < data.length - 1 && data[i] === 0; i++)
|
|
173
|
+
res.push(0);
|
|
174
|
+
return res.reverse();
|
|
175
|
+
}
|
|
176
|
+
const gcd = /* @__NO_SIDE_EFFECTS__ */ (a, b) => (!b ? a : gcd(b, a % b));
|
|
177
|
+
const radix2carry = /*@__NO_SIDE_EFFECTS__ */ (from, to) => from + (to - gcd(from, to));
|
|
178
|
+
/**
|
|
179
|
+
* Implemented with numbers, because BigInt is 5x slower
|
|
180
|
+
* @__NO_SIDE_EFFECTS__
|
|
181
|
+
*/
|
|
182
|
+
function convertRadix2(data, from, to, padding) {
|
|
183
|
+
if (!Array.isArray(data))
|
|
184
|
+
throw new Error('convertRadix2: data should be array');
|
|
185
|
+
if (from <= 0 || from > 32)
|
|
186
|
+
throw new Error(`convertRadix2: wrong from=${from}`);
|
|
187
|
+
if (to <= 0 || to > 32)
|
|
188
|
+
throw new Error(`convertRadix2: wrong to=${to}`);
|
|
189
|
+
if (radix2carry(from, to) > 32) {
|
|
190
|
+
throw new Error(`convertRadix2: carry overflow from=${from} to=${to} carryBits=${radix2carry(from, to)}`);
|
|
191
|
+
}
|
|
192
|
+
let carry = 0;
|
|
193
|
+
let pos = 0; // bitwise position in current element
|
|
194
|
+
const mask = 2 ** to - 1;
|
|
195
|
+
const res = [];
|
|
196
|
+
for (const n of data) {
|
|
197
|
+
assertNumber(n);
|
|
198
|
+
if (n >= 2 ** from)
|
|
199
|
+
throw new Error(`convertRadix2: invalid data word=${n} from=${from}`);
|
|
200
|
+
carry = (carry << from) | n;
|
|
201
|
+
if (pos + from > 32)
|
|
202
|
+
throw new Error(`convertRadix2: carry overflow pos=${pos} from=${from}`);
|
|
203
|
+
pos += from;
|
|
204
|
+
for (; pos >= to; pos -= to)
|
|
205
|
+
res.push(((carry >> (pos - to)) & mask) >>> 0);
|
|
206
|
+
carry &= 2 ** pos - 1; // clean carry, otherwise it will cause overflow
|
|
207
|
+
}
|
|
208
|
+
carry = (carry << (to - pos)) & mask;
|
|
209
|
+
if (!padding && pos >= from)
|
|
210
|
+
throw new Error('Excess padding');
|
|
211
|
+
if (!padding && carry)
|
|
212
|
+
throw new Error(`Non-zero padding: ${carry}`);
|
|
213
|
+
if (padding && pos > 0)
|
|
214
|
+
res.push(carry >>> 0);
|
|
215
|
+
return res;
|
|
216
|
+
}
|
|
217
|
+
/**
|
|
218
|
+
* @__NO_SIDE_EFFECTS__
|
|
219
|
+
*/
|
|
220
|
+
function radix(num) {
|
|
221
|
+
assertNumber(num);
|
|
222
|
+
return {
|
|
223
|
+
encode: (bytes) => {
|
|
224
|
+
if (!isBytes(bytes))
|
|
225
|
+
throw new Error('radix.encode input should be Uint8Array');
|
|
226
|
+
return convertRadix(Array.from(bytes), 2 ** 8, num);
|
|
227
|
+
},
|
|
228
|
+
decode: (digits) => {
|
|
229
|
+
if (!Array.isArray(digits) || (digits.length && typeof digits[0] !== 'number'))
|
|
230
|
+
throw new Error('radix.decode input should be array of numbers');
|
|
231
|
+
return Uint8Array.from(convertRadix(digits, num, 2 ** 8));
|
|
232
|
+
},
|
|
233
|
+
};
|
|
234
|
+
}
|
|
235
|
+
/**
|
|
236
|
+
* If both bases are power of same number (like `2**8 <-> 2**64`),
|
|
237
|
+
* there is a linear algorithm. For now we have implementation for power-of-two bases only.
|
|
238
|
+
* @__NO_SIDE_EFFECTS__
|
|
239
|
+
*/
|
|
240
|
+
function radix2(bits, revPadding = false) {
|
|
241
|
+
assertNumber(bits);
|
|
242
|
+
if (bits <= 0 || bits > 32)
|
|
243
|
+
throw new Error('radix2: bits should be in (0..32]');
|
|
244
|
+
if (radix2carry(8, bits) > 32 || radix2carry(bits, 8) > 32)
|
|
245
|
+
throw new Error('radix2: carry overflow');
|
|
246
|
+
return {
|
|
247
|
+
encode: (bytes) => {
|
|
248
|
+
if (!isBytes(bytes))
|
|
249
|
+
throw new Error('radix2.encode input should be Uint8Array');
|
|
250
|
+
return convertRadix2(Array.from(bytes), 8, bits, !revPadding);
|
|
251
|
+
},
|
|
252
|
+
decode: (digits) => {
|
|
253
|
+
if (!Array.isArray(digits) || (digits.length && typeof digits[0] !== 'number'))
|
|
254
|
+
throw new Error('radix2.decode input should be array of numbers');
|
|
255
|
+
return Uint8Array.from(convertRadix2(digits, bits, 8, revPadding));
|
|
256
|
+
},
|
|
257
|
+
};
|
|
258
|
+
}
|
|
259
|
+
/**
|
|
260
|
+
* @__NO_SIDE_EFFECTS__
|
|
261
|
+
*/
|
|
262
|
+
function unsafeWrapper(fn) {
|
|
263
|
+
if (typeof fn !== 'function')
|
|
264
|
+
throw new Error('unsafeWrapper fn should be function');
|
|
265
|
+
return function (...args) {
|
|
266
|
+
try {
|
|
267
|
+
return fn.apply(null, args);
|
|
268
|
+
}
|
|
269
|
+
catch (e) { }
|
|
270
|
+
};
|
|
271
|
+
}
|
|
272
|
+
/**
|
|
273
|
+
* @__NO_SIDE_EFFECTS__
|
|
274
|
+
*/
|
|
275
|
+
function checksum(len, fn) {
|
|
276
|
+
assertNumber(len);
|
|
277
|
+
if (typeof fn !== 'function')
|
|
278
|
+
throw new Error('checksum fn should be function');
|
|
279
|
+
return {
|
|
280
|
+
encode(data) {
|
|
281
|
+
if (!isBytes(data))
|
|
282
|
+
throw new Error('checksum.encode: input should be Uint8Array');
|
|
283
|
+
const checksum = fn(data).slice(0, len);
|
|
284
|
+
const res = new Uint8Array(data.length + len);
|
|
285
|
+
res.set(data);
|
|
286
|
+
res.set(checksum, data.length);
|
|
287
|
+
return res;
|
|
288
|
+
},
|
|
289
|
+
decode(data) {
|
|
290
|
+
if (!isBytes(data))
|
|
291
|
+
throw new Error('checksum.decode: input should be Uint8Array');
|
|
292
|
+
const payload = data.slice(0, -len);
|
|
293
|
+
const newChecksum = fn(payload).slice(0, len);
|
|
294
|
+
const oldChecksum = data.slice(-len);
|
|
295
|
+
for (let i = 0; i < len; i++)
|
|
296
|
+
if (newChecksum[i] !== oldChecksum[i])
|
|
297
|
+
throw new Error('Invalid checksum');
|
|
298
|
+
return payload;
|
|
299
|
+
},
|
|
300
|
+
};
|
|
301
|
+
}
|
|
302
|
+
// prettier-ignore
|
|
303
|
+
export const utils = {
|
|
304
|
+
alphabet, chain, checksum, convertRadix, convertRadix2, radix, radix2, join, padding,
|
|
305
|
+
};
|
|
306
|
+
// RFC 4648 aka RFC 3548
|
|
307
|
+
// ---------------------
|
|
308
|
+
export const base16 = /* @__PURE__ */ chain(radix2(4), alphabet('0123456789ABCDEF'), join(''));
|
|
309
|
+
export const base32 = /* @__PURE__ */ chain(radix2(5), alphabet('ABCDEFGHIJKLMNOPQRSTUVWXYZ234567'), padding(5), join(''));
|
|
310
|
+
export const base32nopad = /* @__PURE__ */ chain(radix2(5), alphabet('ABCDEFGHIJKLMNOPQRSTUVWXYZ234567'), join(''));
|
|
311
|
+
export const base32hex = /* @__PURE__ */ chain(radix2(5), alphabet('0123456789ABCDEFGHIJKLMNOPQRSTUV'), padding(5), join(''));
|
|
312
|
+
export const base32hexnopad = /* @__PURE__ */ chain(radix2(5), alphabet('0123456789ABCDEFGHIJKLMNOPQRSTUV'), join(''));
|
|
313
|
+
export const base32crockford = /* @__PURE__ */ chain(radix2(5), alphabet('0123456789ABCDEFGHJKMNPQRSTVWXYZ'), join(''), normalize((s) => s.toUpperCase().replace(/O/g, '0').replace(/[IL]/g, '1')));
|
|
314
|
+
export const base64 = /* @__PURE__ */ chain(radix2(6), alphabet('ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/'), padding(6), join(''));
|
|
315
|
+
export const base64nopad = /* @__PURE__ */ chain(radix2(6), alphabet('ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/'), join(''));
|
|
316
|
+
export const base64url = /* @__PURE__ */ chain(radix2(6), alphabet('ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_'), padding(6), join(''));
|
|
317
|
+
export const base64urlnopad = /* @__PURE__ */ chain(radix2(6), alphabet('ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_'), join(''));
|
|
318
|
+
// base58 code
|
|
319
|
+
// -----------
|
|
320
|
+
const genBase58 = (abc) => chain(radix(58), alphabet(abc), join(''));
|
|
321
|
+
export const base58 = /* @__PURE__ */ genBase58('123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz');
|
|
322
|
+
export const base58flickr = /* @__PURE__ */ genBase58('123456789abcdefghijkmnopqrstuvwxyzABCDEFGHJKLMNPQRSTUVWXYZ');
|
|
323
|
+
export const base58xrp = /* @__PURE__ */ genBase58('rpshnaf39wBUDNEGHJKLM4PQRST7VWXYZ2bcdeCg65jkm8oFqi1tuvAxyz');
|
|
324
|
+
// xmr ver is done in 8-byte blocks (which equals 11 chars in decoding). Last (non-full) block padded with '1' to size in XMR_BLOCK_LEN.
|
|
325
|
+
// Block encoding significantly reduces quadratic complexity of base58.
|
|
326
|
+
// Data len (index) -> encoded block len
|
|
327
|
+
const XMR_BLOCK_LEN = [0, 2, 3, 5, 6, 7, 9, 10, 11];
|
|
328
|
+
export const base58xmr = {
|
|
329
|
+
encode(data) {
|
|
330
|
+
let res = '';
|
|
331
|
+
for (let i = 0; i < data.length; i += 8) {
|
|
332
|
+
const block = data.subarray(i, i + 8);
|
|
333
|
+
res += base58.encode(block).padStart(XMR_BLOCK_LEN[block.length], '1');
|
|
334
|
+
}
|
|
335
|
+
return res;
|
|
336
|
+
},
|
|
337
|
+
decode(str) {
|
|
338
|
+
let res = [];
|
|
339
|
+
for (let i = 0; i < str.length; i += 11) {
|
|
340
|
+
const slice = str.slice(i, i + 11);
|
|
341
|
+
const blockLen = XMR_BLOCK_LEN.indexOf(slice.length);
|
|
342
|
+
const block = base58.decode(slice);
|
|
343
|
+
for (let j = 0; j < block.length - blockLen; j++) {
|
|
344
|
+
if (block[j] !== 0)
|
|
345
|
+
throw new Error('base58xmr: wrong padding');
|
|
346
|
+
}
|
|
347
|
+
res = res.concat(Array.from(block.slice(block.length - blockLen)));
|
|
348
|
+
}
|
|
349
|
+
return Uint8Array.from(res);
|
|
350
|
+
},
|
|
351
|
+
};
|
|
352
|
+
export const createBase58check = (sha256) => chain(checksum(4, (data) => sha256(sha256(data))), base58);
|
|
353
|
+
// legacy export, bad name
|
|
354
|
+
export const base58check = createBase58check;
|
|
355
|
+
const BECH_ALPHABET = /* @__PURE__ */ chain(alphabet('qpzry9x8gf2tvdw0s3jn54khce6mua7l'), join(''));
|
|
356
|
+
const POLYMOD_GENERATORS = [0x3b6a57b2, 0x26508e6d, 0x1ea119fa, 0x3d4233dd, 0x2a1462b3];
|
|
357
|
+
/**
|
|
358
|
+
* @__NO_SIDE_EFFECTS__
|
|
359
|
+
*/
|
|
360
|
+
function bech32Polymod(pre) {
|
|
361
|
+
const b = pre >> 25;
|
|
362
|
+
let chk = (pre & 0x1ffffff) << 5;
|
|
363
|
+
for (let i = 0; i < POLYMOD_GENERATORS.length; i++) {
|
|
364
|
+
if (((b >> i) & 1) === 1)
|
|
365
|
+
chk ^= POLYMOD_GENERATORS[i];
|
|
366
|
+
}
|
|
367
|
+
return chk;
|
|
368
|
+
}
|
|
369
|
+
/**
|
|
370
|
+
* @__NO_SIDE_EFFECTS__
|
|
371
|
+
*/
|
|
372
|
+
function bechChecksum(prefix, words, encodingConst = 1) {
|
|
373
|
+
const len = prefix.length;
|
|
374
|
+
let chk = 1;
|
|
375
|
+
for (let i = 0; i < len; i++) {
|
|
376
|
+
const c = prefix.charCodeAt(i);
|
|
377
|
+
if (c < 33 || c > 126)
|
|
378
|
+
throw new Error(`Invalid prefix (${prefix})`);
|
|
379
|
+
chk = bech32Polymod(chk) ^ (c >> 5);
|
|
380
|
+
}
|
|
381
|
+
chk = bech32Polymod(chk);
|
|
382
|
+
for (let i = 0; i < len; i++)
|
|
383
|
+
chk = bech32Polymod(chk) ^ (prefix.charCodeAt(i) & 0x1f);
|
|
384
|
+
for (let v of words)
|
|
385
|
+
chk = bech32Polymod(chk) ^ v;
|
|
386
|
+
for (let i = 0; i < 6; i++)
|
|
387
|
+
chk = bech32Polymod(chk);
|
|
388
|
+
chk ^= encodingConst;
|
|
389
|
+
return BECH_ALPHABET.encode(convertRadix2([chk % 2 ** 30], 30, 5, false));
|
|
390
|
+
}
|
|
391
|
+
/**
|
|
392
|
+
* @__NO_SIDE_EFFECTS__
|
|
393
|
+
*/
|
|
394
|
+
function genBech32(encoding) {
|
|
395
|
+
const ENCODING_CONST = encoding === 'bech32' ? 1 : 0x2bc830a3;
|
|
396
|
+
const _words = radix2(5);
|
|
397
|
+
const fromWords = _words.decode;
|
|
398
|
+
const toWords = _words.encode;
|
|
399
|
+
const fromWordsUnsafe = unsafeWrapper(fromWords);
|
|
400
|
+
function encode(prefix, words, limit = 90) {
|
|
401
|
+
if (typeof prefix !== 'string')
|
|
402
|
+
throw new Error(`bech32.encode prefix should be string, not ${typeof prefix}`);
|
|
403
|
+
if (words instanceof Uint8Array)
|
|
404
|
+
words = Array.from(words);
|
|
405
|
+
if (!Array.isArray(words) || (words.length && typeof words[0] !== 'number'))
|
|
406
|
+
throw new Error(`bech32.encode words should be array of numbers, not ${typeof words}`);
|
|
407
|
+
if (prefix.length === 0)
|
|
408
|
+
throw new TypeError(`Invalid prefix length ${prefix.length}`);
|
|
409
|
+
const actualLength = prefix.length + 7 + words.length;
|
|
410
|
+
if (limit !== false && actualLength > limit)
|
|
411
|
+
throw new TypeError(`Length ${actualLength} exceeds limit ${limit}`);
|
|
412
|
+
const lowered = prefix.toLowerCase();
|
|
413
|
+
const sum = bechChecksum(lowered, words, ENCODING_CONST);
|
|
414
|
+
return `${lowered}1${BECH_ALPHABET.encode(words)}${sum}`;
|
|
415
|
+
}
|
|
416
|
+
function decode(str, limit = 90) {
|
|
417
|
+
if (typeof str !== 'string')
|
|
418
|
+
throw new Error(`bech32.decode input should be string, not ${typeof str}`);
|
|
419
|
+
if (str.length < 8 || (limit !== false && str.length > limit))
|
|
420
|
+
throw new TypeError(`Wrong string length: ${str.length} (${str}). Expected (8..${limit})`);
|
|
421
|
+
// don't allow mixed case
|
|
422
|
+
const lowered = str.toLowerCase();
|
|
423
|
+
if (str !== lowered && str !== str.toUpperCase())
|
|
424
|
+
throw new Error(`String must be lowercase or uppercase`);
|
|
425
|
+
const sepIndex = lowered.lastIndexOf('1');
|
|
426
|
+
if (sepIndex === 0 || sepIndex === -1)
|
|
427
|
+
throw new Error(`Letter "1" must be present between prefix and data only`);
|
|
428
|
+
const prefix = lowered.slice(0, sepIndex);
|
|
429
|
+
const data = lowered.slice(sepIndex + 1);
|
|
430
|
+
if (data.length < 6)
|
|
431
|
+
throw new Error('Data must be at least 6 characters long');
|
|
432
|
+
const words = BECH_ALPHABET.decode(data).slice(0, -6);
|
|
433
|
+
const sum = bechChecksum(prefix, words, ENCODING_CONST);
|
|
434
|
+
if (!data.endsWith(sum))
|
|
435
|
+
throw new Error(`Invalid checksum in ${str}: expected "${sum}"`);
|
|
436
|
+
return { prefix, words };
|
|
437
|
+
}
|
|
438
|
+
const decodeUnsafe = unsafeWrapper(decode);
|
|
439
|
+
function decodeToBytes(str) {
|
|
440
|
+
const { prefix, words } = decode(str, false);
|
|
441
|
+
return { prefix, words, bytes: fromWords(words) };
|
|
442
|
+
}
|
|
443
|
+
function encodeFromBytes(prefix, bytes) {
|
|
444
|
+
return encode(prefix, toWords(bytes));
|
|
445
|
+
}
|
|
446
|
+
return {
|
|
447
|
+
encode,
|
|
448
|
+
decode,
|
|
449
|
+
encodeFromBytes,
|
|
450
|
+
decodeToBytes,
|
|
451
|
+
decodeUnsafe,
|
|
452
|
+
fromWords,
|
|
453
|
+
fromWordsUnsafe,
|
|
454
|
+
toWords,
|
|
455
|
+
};
|
|
456
|
+
}
|
|
457
|
+
export const bech32 = /* @__PURE__ */ genBech32('bech32');
|
|
458
|
+
export const bech32m = /* @__PURE__ */ genBech32('bech32m');
|
|
459
|
+
export const utf8 = {
|
|
460
|
+
encode: (data) => new TextDecoder().decode(data),
|
|
461
|
+
decode: (str) => new TextEncoder().encode(str),
|
|
462
|
+
};
|
|
463
|
+
export const hex = /* @__PURE__ */ chain(radix2(4), alphabet('0123456789abcdef'), join(''), normalize((s) => {
|
|
464
|
+
if (typeof s !== 'string' || s.length % 2)
|
|
465
|
+
throw new TypeError(`hex.decode: expected string, got ${typeof s} with length ${s.length}`);
|
|
466
|
+
return s.toLowerCase();
|
|
467
|
+
}));
|
|
468
|
+
// prettier-ignore
|
|
469
|
+
const CODERS = {
|
|
470
|
+
utf8, hex, base16, base32, base64, base64url, base58, base58xmr
|
|
471
|
+
};
|
|
472
|
+
const coderTypeError = 'Invalid encoding type. Available types: utf8, hex, base16, base32, base64, base64url, base58, base58xmr';
|
|
473
|
+
export const bytesToString = (type, bytes) => {
|
|
474
|
+
if (typeof type !== 'string' || !CODERS.hasOwnProperty(type))
|
|
475
|
+
throw new TypeError(coderTypeError);
|
|
476
|
+
if (!isBytes(bytes))
|
|
477
|
+
throw new TypeError('bytesToString() expects Uint8Array');
|
|
478
|
+
return CODERS[type].encode(bytes);
|
|
479
|
+
};
|
|
480
|
+
export const str = bytesToString; // as in python, but for bytes only
|
|
481
|
+
export const stringToBytes = (type, str) => {
|
|
482
|
+
if (!CODERS.hasOwnProperty(type))
|
|
483
|
+
throw new TypeError(coderTypeError);
|
|
484
|
+
if (typeof str !== 'string')
|
|
485
|
+
throw new TypeError('stringToBytes() expects string');
|
|
486
|
+
return CODERS[type].decode(str);
|
|
487
|
+
};
|
|
488
|
+
export const bytes = stringToBytes;
|
|
489
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../index.ts"],"names":[],"mappings":"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"}
|