meteor-node-stubs 1.2.17 → 1.2.19
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/node_modules/@meteorjs/browserify-sign/browser/sign.js +1 -1
- package/node_modules/@meteorjs/browserify-sign/browser/verify.js +1 -1
- package/node_modules/@meteorjs/browserify-sign/elliptic/benchmarks/deps/jodid.js +82 -0
- package/node_modules/@meteorjs/browserify-sign/elliptic/benchmarks/deps/secp256k1.js +41 -0
- package/node_modules/@meteorjs/browserify-sign/elliptic/benchmarks/index.js +153 -0
- package/node_modules/@meteorjs/browserify-sign/elliptic/benchmarks/package.json +21 -0
- package/node_modules/@meteorjs/browserify-sign/elliptic/dist/.gitkeep +0 -0
- package/node_modules/@meteorjs/browserify-sign/elliptic/dist/elliptic.js +8961 -0
- package/node_modules/@meteorjs/browserify-sign/elliptic/dist/elliptic.min.js +1 -0
- package/node_modules/{elliptic → @meteorjs/browserify-sign/elliptic}/lib/elliptic.js +1 -1
- package/node_modules/@meteorjs/browserify-sign/elliptic/test/api-test.js +20 -0
- package/node_modules/@meteorjs/browserify-sign/elliptic/test/curve-test.js +357 -0
- package/node_modules/@meteorjs/browserify-sign/elliptic/test/ecdh-test.js +43 -0
- package/node_modules/@meteorjs/browserify-sign/elliptic/test/ecdsa-test.js +547 -0
- package/node_modules/@meteorjs/browserify-sign/elliptic/test/ed25519-test.js +138 -0
- package/node_modules/@meteorjs/browserify-sign/elliptic/test/fixtures/derivation-fixtures.js +3842 -0
- package/node_modules/@meteorjs/browserify-sign/elliptic/test/fixtures/sign.input +1024 -0
- package/node_modules/@meteorjs/browserify-sign/elliptic/test/index.js +10 -0
- package/node_modules/@meteorjs/browserify-sign/elliptic/test/unittests.html +39 -0
- package/node_modules/@meteorjs/browserify-sign/package.json +22 -5
- package/node_modules/@meteorjs/create-ecdh/browser.js +1 -1
- package/node_modules/@meteorjs/create-ecdh/elliptic/README.md +238 -0
- package/node_modules/@meteorjs/create-ecdh/elliptic/benchmarks/deps/jodid.js +82 -0
- package/node_modules/@meteorjs/create-ecdh/elliptic/benchmarks/deps/secp256k1.js +41 -0
- package/node_modules/@meteorjs/create-ecdh/elliptic/benchmarks/index.js +153 -0
- package/node_modules/@meteorjs/create-ecdh/elliptic/benchmarks/package.json +21 -0
- package/node_modules/@meteorjs/create-ecdh/elliptic/dist/.gitkeep +0 -0
- package/node_modules/@meteorjs/create-ecdh/elliptic/dist/elliptic.js +8961 -0
- package/node_modules/@meteorjs/create-ecdh/elliptic/dist/elliptic.min.js +1 -0
- package/node_modules/@meteorjs/create-ecdh/elliptic/lib/elliptic/curve/base.js +381 -0
- package/node_modules/@meteorjs/create-ecdh/elliptic/lib/elliptic/curve/edwards.js +435 -0
- package/node_modules/@meteorjs/create-ecdh/elliptic/lib/elliptic/curve/index.js +8 -0
- package/node_modules/@meteorjs/create-ecdh/elliptic/lib/elliptic/curve/mont.js +178 -0
- package/node_modules/@meteorjs/create-ecdh/elliptic/lib/elliptic/curve/short.js +938 -0
- package/node_modules/@meteorjs/create-ecdh/elliptic/lib/elliptic/curves.js +206 -0
- package/node_modules/@meteorjs/create-ecdh/elliptic/lib/elliptic/ec/index.js +278 -0
- package/node_modules/@meteorjs/create-ecdh/elliptic/lib/elliptic/ec/key.js +121 -0
- package/node_modules/@meteorjs/create-ecdh/elliptic/lib/elliptic/ec/signature.js +176 -0
- package/node_modules/@meteorjs/create-ecdh/elliptic/lib/elliptic/eddsa/index.js +121 -0
- package/node_modules/@meteorjs/create-ecdh/elliptic/lib/elliptic/eddsa/key.js +95 -0
- package/node_modules/@meteorjs/create-ecdh/elliptic/lib/elliptic/eddsa/signature.js +66 -0
- package/node_modules/@meteorjs/create-ecdh/elliptic/lib/elliptic/precomputed/secp256k1.js +780 -0
- package/node_modules/@meteorjs/create-ecdh/elliptic/lib/elliptic/utils.js +122 -0
- package/node_modules/@meteorjs/create-ecdh/elliptic/lib/elliptic.js +13 -0
- package/node_modules/@meteorjs/create-ecdh/elliptic/test/api-test.js +20 -0
- package/node_modules/@meteorjs/create-ecdh/elliptic/test/curve-test.js +357 -0
- package/node_modules/@meteorjs/create-ecdh/elliptic/test/ecdh-test.js +43 -0
- package/node_modules/@meteorjs/create-ecdh/elliptic/test/ecdsa-test.js +547 -0
- package/node_modules/@meteorjs/create-ecdh/elliptic/test/ed25519-test.js +138 -0
- package/node_modules/@meteorjs/create-ecdh/elliptic/test/fixtures/derivation-fixtures.js +3842 -0
- package/node_modules/@meteorjs/create-ecdh/elliptic/test/fixtures/sign.input +1024 -0
- package/node_modules/@meteorjs/create-ecdh/elliptic/test/index.js +10 -0
- package/node_modules/@meteorjs/create-ecdh/elliptic/test/unittests.html +39 -0
- package/node_modules/@meteorjs/create-ecdh/node_modules/bn.js/lib/bn.js +1 -0
- package/node_modules/@meteorjs/create-ecdh/node_modules/bn.js/package.json +1 -1
- package/node_modules/@meteorjs/create-ecdh/package.json +23 -5
- package/node_modules/asn1.js/node_modules/bn.js/lib/bn.js +6 -5
- package/node_modules/asn1.js/node_modules/bn.js/package.json +1 -1
- package/node_modules/asn1.js/node_modules/bn.js/util/genCombMulTo.js +65 -0
- package/node_modules/asn1.js/node_modules/bn.js/util/genCombMulTo10.js +65 -0
- package/node_modules/available-typed-arrays/.eslintrc +0 -4
- package/node_modules/available-typed-arrays/CHANGELOG.md +21 -0
- package/node_modules/available-typed-arrays/README.md +16 -13
- package/node_modules/available-typed-arrays/index.d.ts +8 -0
- package/node_modules/available-typed-arrays/index.js +4 -14
- package/node_modules/available-typed-arrays/package.json +26 -15
- package/node_modules/available-typed-arrays/tsconfig.json +49 -0
- package/node_modules/bn.js/README.md +11 -5
- package/node_modules/bn.js/lib/bn.js +6 -5
- package/node_modules/bn.js/package.json +1 -1
- package/node_modules/browserify-rsa/CHANGELOG.md +98 -0
- package/node_modules/browserify-rsa/README.md +0 -2
- package/node_modules/browserify-rsa/index.js +31 -28
- package/node_modules/browserify-rsa/package.json +64 -29
- package/node_modules/call-bind/CHANGELOG.md +13 -0
- package/node_modules/call-bind/index.js +6 -17
- package/node_modules/call-bind/package.json +14 -16
- package/node_modules/call-bind/test/index.js +4 -10
- package/node_modules/call-bind-apply-helpers/.eslintrc +17 -0
- package/node_modules/call-bind-apply-helpers/.github/FUNDING.yml +12 -0
- package/node_modules/call-bind-apply-helpers/.nycrc +9 -0
- package/node_modules/call-bind-apply-helpers/CHANGELOG.md +30 -0
- package/node_modules/{has-proto → call-bind-apply-helpers}/LICENSE +1 -1
- package/node_modules/call-bind-apply-helpers/README.md +62 -0
- package/node_modules/call-bind-apply-helpers/actualApply.d.ts +1 -0
- package/node_modules/call-bind-apply-helpers/actualApply.js +10 -0
- package/node_modules/call-bind-apply-helpers/applyBind.d.ts +19 -0
- package/node_modules/call-bind-apply-helpers/applyBind.js +10 -0
- package/node_modules/call-bind-apply-helpers/functionApply.d.ts +1 -0
- package/node_modules/call-bind-apply-helpers/functionApply.js +4 -0
- package/node_modules/call-bind-apply-helpers/functionCall.d.ts +1 -0
- package/node_modules/call-bind-apply-helpers/functionCall.js +4 -0
- package/node_modules/call-bind-apply-helpers/index.d.ts +64 -0
- package/node_modules/call-bind-apply-helpers/index.js +15 -0
- package/node_modules/call-bind-apply-helpers/package.json +85 -0
- package/node_modules/call-bind-apply-helpers/reflectApply.d.ts +3 -0
- package/node_modules/call-bind-apply-helpers/reflectApply.js +4 -0
- package/node_modules/call-bind-apply-helpers/test/index.js +63 -0
- package/node_modules/call-bind-apply-helpers/tsconfig.json +9 -0
- package/node_modules/call-bound/.eslintrc +13 -0
- package/node_modules/call-bound/.github/FUNDING.yml +12 -0
- package/node_modules/call-bound/.nycrc +9 -0
- package/node_modules/call-bound/CHANGELOG.md +42 -0
- package/node_modules/{@meteorjs/browserify-sign/node_modules/bn.js → call-bound}/LICENSE +3 -1
- package/node_modules/call-bound/README.md +53 -0
- package/node_modules/call-bound/index.d.ts +94 -0
- package/node_modules/call-bound/index.js +19 -0
- package/node_modules/call-bound/package.json +99 -0
- package/node_modules/call-bound/test/index.js +61 -0
- package/node_modules/call-bound/tsconfig.json +10 -0
- package/node_modules/cipher-base/.eslintrc +24 -1
- package/node_modules/cipher-base/.github/FUNDING.yml +12 -0
- package/node_modules/cipher-base/CHANGELOG.md +66 -0
- package/node_modules/cipher-base/index.js +145 -77
- package/node_modules/cipher-base/package.json +60 -30
- package/node_modules/cipher-base/test/index.js +221 -0
- package/node_modules/des.js/lib/des/cipher.js +1 -0
- package/node_modules/des.js/lib/des/des.js +8 -0
- package/node_modules/des.js/package.json +3 -4
- package/node_modules/des.js/test/cbc-test.js +5 -5
- package/node_modules/des.js/test/des-test.js +9 -9
- package/node_modules/des.js/test/ede-test.js +39 -6
- package/node_modules/diffie-hellman/node_modules/bn.js/lib/bn.js +6 -5
- package/node_modules/diffie-hellman/node_modules/bn.js/package.json +1 -1
- package/node_modules/diffie-hellman/node_modules/bn.js/util/genCombMulTo.js +65 -0
- package/node_modules/diffie-hellman/node_modules/bn.js/util/genCombMulTo10.js +65 -0
- package/node_modules/dunder-proto/.github/FUNDING.yml +12 -0
- package/node_modules/dunder-proto/.nycrc +13 -0
- package/node_modules/dunder-proto/CHANGELOG.md +24 -0
- package/node_modules/{@meteorjs/crypto-browserify/node_modules/hash-base → dunder-proto}/LICENSE +6 -6
- package/node_modules/dunder-proto/README.md +54 -0
- package/node_modules/dunder-proto/get.d.ts +5 -0
- package/node_modules/dunder-proto/get.js +30 -0
- package/node_modules/dunder-proto/package.json +76 -0
- package/node_modules/dunder-proto/set.d.ts +5 -0
- package/node_modules/dunder-proto/set.js +35 -0
- package/node_modules/dunder-proto/test/get.js +34 -0
- package/node_modules/dunder-proto/test/index.js +4 -0
- package/node_modules/dunder-proto/test/set.js +50 -0
- package/node_modules/dunder-proto/tsconfig.json +9 -0
- package/node_modules/es-define-property/CHANGELOG.md +14 -0
- package/node_modules/es-define-property/index.js +1 -3
- package/node_modules/es-define-property/package.json +12 -12
- package/node_modules/es-define-property/test/index.js +1 -0
- package/node_modules/es-define-property/tsconfig.json +2 -42
- package/node_modules/es-object-atoms/.eslintrc +16 -0
- package/node_modules/es-object-atoms/.github/FUNDING.yml +12 -0
- package/node_modules/es-object-atoms/CHANGELOG.md +37 -0
- package/node_modules/{elliptic/node_modules/bn.js → es-object-atoms}/LICENSE +3 -1
- package/node_modules/es-object-atoms/README.md +63 -0
- package/node_modules/es-object-atoms/RequireObjectCoercible.d.ts +3 -0
- package/node_modules/es-object-atoms/RequireObjectCoercible.js +11 -0
- package/node_modules/es-object-atoms/ToObject.d.ts +7 -0
- package/node_modules/es-object-atoms/ToObject.js +10 -0
- package/node_modules/es-object-atoms/index.d.ts +3 -0
- package/node_modules/es-object-atoms/index.js +4 -0
- package/node_modules/es-object-atoms/isObject.d.ts +3 -0
- package/node_modules/es-object-atoms/isObject.js +6 -0
- package/node_modules/es-object-atoms/package.json +80 -0
- package/node_modules/es-object-atoms/test/index.js +38 -0
- package/node_modules/es-object-atoms/tsconfig.json +6 -0
- package/node_modules/for-each/.eslintrc +16 -2
- package/node_modules/{has-proto → for-each}/.github/FUNDING.yml +1 -1
- package/node_modules/for-each/.github/SECURITY.md +3 -0
- package/node_modules/for-each/.nycrc +8 -0
- package/node_modules/for-each/CHANGELOG.md +107 -0
- package/node_modules/for-each/README.md +0 -4
- package/node_modules/for-each/index.d.ts +35 -0
- package/node_modules/for-each/index.js +11 -4
- package/node_modules/for-each/package.json +47 -36
- package/node_modules/for-each/test/test.js +54 -12
- package/node_modules/for-each/tsconfig.json +8 -0
- package/node_modules/get-intrinsic/.eslintrc +4 -0
- package/node_modules/get-intrinsic/CHANGELOG.md +43 -0
- package/node_modules/get-intrinsic/index.js +40 -21
- package/node_modules/get-intrinsic/package.json +24 -20
- package/node_modules/get-intrinsic/test/GetIntrinsic.js +2 -2
- package/node_modules/get-proto/.eslintrc +10 -0
- package/node_modules/get-proto/.github/FUNDING.yml +12 -0
- package/node_modules/get-proto/.nycrc +9 -0
- package/node_modules/get-proto/CHANGELOG.md +21 -0
- package/node_modules/get-proto/LICENSE +21 -0
- package/node_modules/get-proto/Object.getPrototypeOf.d.ts +5 -0
- package/node_modules/get-proto/Object.getPrototypeOf.js +6 -0
- package/node_modules/get-proto/README.md +50 -0
- package/node_modules/get-proto/Reflect.getPrototypeOf.d.ts +3 -0
- package/node_modules/get-proto/Reflect.getPrototypeOf.js +4 -0
- package/node_modules/get-proto/index.d.ts +5 -0
- package/node_modules/get-proto/index.js +27 -0
- package/node_modules/{has-proto → get-proto}/package.json +33 -26
- package/node_modules/get-proto/test/index.js +68 -0
- package/node_modules/get-proto/tsconfig.json +9 -0
- package/node_modules/gopd/CHANGELOG.md +20 -0
- package/node_modules/gopd/gOPD.d.ts +1 -0
- package/node_modules/gopd/gOPD.js +4 -0
- package/node_modules/gopd/index.d.ts +5 -0
- package/node_modules/gopd/index.js +2 -3
- package/node_modules/gopd/package.json +16 -10
- package/node_modules/gopd/test/index.js +2 -1
- package/node_modules/gopd/tsconfig.json +9 -0
- package/node_modules/has-symbols/CHANGELOG.md +16 -0
- package/node_modules/has-symbols/index.d.ts +3 -0
- package/node_modules/has-symbols/index.js +1 -0
- package/node_modules/has-symbols/package.json +19 -9
- package/node_modules/has-symbols/shams.d.ts +3 -0
- package/node_modules/has-symbols/shams.js +5 -2
- package/node_modules/has-symbols/test/shams/core-js.js +1 -0
- package/node_modules/has-symbols/test/shams/get-own-property-symbols.js +1 -0
- package/node_modules/has-symbols/test/tests.js +4 -2
- package/node_modules/has-symbols/tsconfig.json +10 -0
- package/node_modules/has-tostringtag/.eslintrc +0 -6
- package/node_modules/has-tostringtag/.nycrc +13 -0
- package/node_modules/has-tostringtag/CHANGELOG.md +22 -0
- package/node_modules/has-tostringtag/index.d.ts +3 -0
- package/node_modules/has-tostringtag/index.js +1 -0
- package/node_modules/has-tostringtag/package.json +37 -13
- package/node_modules/has-tostringtag/shams.d.ts +3 -0
- package/node_modules/has-tostringtag/shams.js +1 -0
- package/node_modules/has-tostringtag/test/shams/core-js.js +3 -0
- package/node_modules/has-tostringtag/test/shams/get-own-property-symbols.js +2 -0
- package/node_modules/has-tostringtag/test/tests.js +2 -1
- package/node_modules/has-tostringtag/tsconfig.json +49 -0
- package/node_modules/hash-base/README.md +15 -15
- package/node_modules/hash-base/index.js +52 -9
- package/node_modules/hash-base/package.json +40 -40
- package/node_modules/hasown/CHANGELOG.md +20 -0
- package/node_modules/hasown/index.d.ts +3 -3
- package/node_modules/hasown/index.js +1 -1
- package/node_modules/hasown/package.json +16 -15
- package/node_modules/hasown/tsconfig.json +3 -46
- package/node_modules/is-arguments/.eslintrc +0 -1
- package/node_modules/is-arguments/CHANGELOG.md +22 -0
- package/node_modules/is-arguments/README.md +11 -11
- package/node_modules/is-arguments/index.d.ts +6 -0
- package/node_modules/is-arguments/index.js +19 -8
- package/node_modules/is-arguments/package.json +25 -11
- package/node_modules/is-arguments/test/index.js +4 -1
- package/node_modules/is-arguments/tsconfig.json +9 -0
- package/node_modules/is-generator-function/.eslintrc +1 -1
- package/node_modules/is-generator-function/CHANGELOG.md +21 -0
- package/node_modules/is-generator-function/index.d.ts +3 -0
- package/node_modules/is-generator-function/index.js +16 -7
- package/node_modules/is-generator-function/package.json +30 -11
- package/node_modules/is-generator-function/test/corejs.js +1 -0
- package/node_modules/is-generator-function/test/index.js +4 -7
- package/node_modules/is-generator-function/test/uglified.js +1 -0
- package/node_modules/is-generator-function/tsconfig.json +9 -0
- package/node_modules/is-regex/.editorconfig +23 -0
- package/node_modules/is-regex/.eslintrc +10 -0
- package/node_modules/is-regex/.nycrc +10 -0
- package/node_modules/is-regex/CHANGELOG.md +233 -0
- package/node_modules/is-regex/LICENSE +20 -0
- package/node_modules/is-regex/README.md +52 -0
- package/node_modules/is-regex/index.d.ts +3 -0
- package/node_modules/is-regex/index.js +69 -0
- package/node_modules/is-regex/package.json +104 -0
- package/node_modules/is-regex/test/index.js +121 -0
- package/node_modules/is-regex/tsconfig.json +9 -0
- package/node_modules/is-typed-array/CHANGELOG.md +32 -0
- package/node_modules/is-typed-array/index.d.ts +9 -0
- package/node_modules/is-typed-array/index.js +1 -0
- package/node_modules/is-typed-array/package.json +23 -10
- package/node_modules/is-typed-array/test/index.js +9 -1
- package/node_modules/is-typed-array/tsconfig.json +6 -0
- package/node_modules/math-intrinsics/.eslintrc +16 -0
- package/node_modules/math-intrinsics/.github/FUNDING.yml +12 -0
- package/node_modules/math-intrinsics/CHANGELOG.md +24 -0
- package/node_modules/math-intrinsics/LICENSE +21 -0
- package/node_modules/math-intrinsics/README.md +50 -0
- package/node_modules/math-intrinsics/abs.d.ts +1 -0
- package/node_modules/math-intrinsics/abs.js +4 -0
- package/node_modules/math-intrinsics/constants/maxArrayLength.d.ts +3 -0
- package/node_modules/math-intrinsics/constants/maxArrayLength.js +4 -0
- package/node_modules/math-intrinsics/constants/maxSafeInteger.d.ts +3 -0
- package/node_modules/math-intrinsics/constants/maxSafeInteger.js +5 -0
- package/node_modules/math-intrinsics/constants/maxValue.d.ts +3 -0
- package/node_modules/math-intrinsics/constants/maxValue.js +5 -0
- package/node_modules/math-intrinsics/floor.d.ts +1 -0
- package/node_modules/math-intrinsics/floor.js +4 -0
- package/node_modules/math-intrinsics/isFinite.d.ts +3 -0
- package/node_modules/math-intrinsics/isFinite.js +12 -0
- package/node_modules/math-intrinsics/isInteger.d.ts +3 -0
- package/node_modules/math-intrinsics/isInteger.js +16 -0
- package/node_modules/math-intrinsics/isNaN.d.ts +1 -0
- package/node_modules/math-intrinsics/isNaN.js +6 -0
- package/node_modules/math-intrinsics/isNegativeZero.d.ts +3 -0
- package/node_modules/math-intrinsics/isNegativeZero.js +6 -0
- package/node_modules/math-intrinsics/max.d.ts +1 -0
- package/node_modules/math-intrinsics/max.js +4 -0
- package/node_modules/math-intrinsics/min.d.ts +1 -0
- package/node_modules/math-intrinsics/min.js +4 -0
- package/node_modules/math-intrinsics/mod.d.ts +3 -0
- package/node_modules/math-intrinsics/mod.js +9 -0
- package/node_modules/math-intrinsics/package.json +86 -0
- package/node_modules/math-intrinsics/pow.d.ts +1 -0
- package/node_modules/math-intrinsics/pow.js +4 -0
- package/node_modules/math-intrinsics/round.d.ts +1 -0
- package/node_modules/math-intrinsics/round.js +4 -0
- package/node_modules/math-intrinsics/sign.d.ts +3 -0
- package/node_modules/math-intrinsics/sign.js +11 -0
- package/node_modules/math-intrinsics/test/index.js +192 -0
- package/node_modules/math-intrinsics/tsconfig.json +3 -0
- package/node_modules/miller-rabin/node_modules/bn.js/lib/bn.js +6 -5
- package/node_modules/miller-rabin/node_modules/bn.js/package.json +1 -1
- package/node_modules/miller-rabin/node_modules/bn.js/util/genCombMulTo.js +65 -0
- package/node_modules/miller-rabin/node_modules/bn.js/util/genCombMulTo10.js +65 -0
- package/node_modules/object-inspect/CHANGELOG.md +20 -0
- package/node_modules/object-inspect/index.js +27 -10
- package/node_modules/object-inspect/package.json +9 -8
- package/node_modules/object-inspect/test/quoteStyle.js +9 -0
- package/node_modules/object-inspect/test/values.js +50 -0
- package/node_modules/object-is/.eslintrc +1 -1
- package/node_modules/object-is/.nycrc +0 -4
- package/node_modules/object-is/CHANGELOG.md +25 -0
- package/node_modules/object-is/README.md +20 -20
- package/node_modules/object-is/package.json +23 -14
- package/node_modules/object.assign/CHANGELOG.md +21 -0
- package/node_modules/object.assign/dist/browser.js +495 -135
- package/node_modules/object.assign/implementation.js +6 -6
- package/node_modules/object.assign/package.json +14 -14
- package/node_modules/object.assign/test/tests.js +2 -2
- package/node_modules/possible-typed-array-names/.eslintrc +5 -0
- package/node_modules/possible-typed-array-names/.github/FUNDING.yml +12 -0
- package/node_modules/possible-typed-array-names/CHANGELOG.md +29 -0
- package/node_modules/possible-typed-array-names/LICENSE +21 -0
- package/node_modules/possible-typed-array-names/README.md +50 -0
- package/node_modules/possible-typed-array-names/index.d.ts +16 -0
- package/node_modules/possible-typed-array-names/index.js +17 -0
- package/node_modules/possible-typed-array-names/package.json +84 -0
- package/node_modules/possible-typed-array-names/test/index.js +19 -0
- package/node_modules/possible-typed-array-names/tsconfig.json +9 -0
- package/node_modules/public-encrypt/node_modules/bn.js/lib/bn.js +6 -5
- package/node_modules/public-encrypt/node_modules/bn.js/package.json +1 -1
- package/node_modules/public-encrypt/node_modules/bn.js/util/genCombMulTo.js +65 -0
- package/node_modules/public-encrypt/node_modules/bn.js/util/genCombMulTo10.js +65 -0
- package/node_modules/qs/.eslintrc +1 -0
- package/node_modules/qs/CHANGELOG.md +22 -0
- package/node_modules/qs/README.md +25 -1
- package/node_modules/qs/dist/qs.js +95 -44
- package/node_modules/qs/lib/parse.js +44 -12
- package/node_modules/qs/lib/stringify.js +11 -6
- package/node_modules/qs/lib/utils.js +7 -4
- package/node_modules/qs/package.json +9 -7
- package/node_modules/qs/test/parse.js +133 -27
- package/node_modules/qs/test/stringify.js +19 -11
- package/node_modules/qs/test/utils.js +126 -0
- package/node_modules/safe-regex-test/.eslintrc +9 -0
- package/node_modules/safe-regex-test/.github/FUNDING.yml +12 -0
- package/node_modules/safe-regex-test/.nycrc +13 -0
- package/node_modules/safe-regex-test/CHANGELOG.md +55 -0
- package/node_modules/safe-regex-test/LICENSE +21 -0
- package/node_modules/safe-regex-test/README.md +46 -0
- package/node_modules/safe-regex-test/index.d.ts +3 -0
- package/node_modules/safe-regex-test/index.js +17 -0
- package/node_modules/safe-regex-test/package.json +87 -0
- package/node_modules/safe-regex-test/test/index.js +41 -0
- package/node_modules/safe-regex-test/tsconfig.json +9 -0
- package/node_modules/side-channel/.eslintrc +1 -0
- package/node_modules/side-channel/CHANGELOG.md +15 -0
- package/node_modules/side-channel/README.md +60 -1
- package/node_modules/side-channel/index.d.ts +9 -22
- package/node_modules/side-channel/index.js +20 -106
- package/node_modules/side-channel/package.json +20 -19
- package/node_modules/side-channel/test/index.js +76 -55
- package/node_modules/side-channel/tsconfig.json +2 -43
- package/node_modules/side-channel-list/.editorconfig +9 -0
- package/node_modules/side-channel-list/.eslintrc +11 -0
- package/node_modules/side-channel-list/.github/FUNDING.yml +12 -0
- package/node_modules/side-channel-list/.nycrc +13 -0
- package/node_modules/side-channel-list/CHANGELOG.md +15 -0
- package/node_modules/side-channel-list/LICENSE +21 -0
- package/node_modules/side-channel-list/README.md +62 -0
- package/node_modules/side-channel-list/index.d.ts +13 -0
- package/node_modules/side-channel-list/index.js +113 -0
- package/node_modules/side-channel-list/list.d.ts +14 -0
- package/node_modules/side-channel-list/package.json +77 -0
- package/node_modules/side-channel-list/test/index.js +104 -0
- package/node_modules/side-channel-list/tsconfig.json +9 -0
- package/node_modules/side-channel-map/.editorconfig +9 -0
- package/node_modules/side-channel-map/.eslintrc +11 -0
- package/node_modules/side-channel-map/.github/FUNDING.yml +12 -0
- package/node_modules/side-channel-map/.nycrc +13 -0
- package/node_modules/side-channel-map/CHANGELOG.md +22 -0
- package/node_modules/side-channel-map/LICENSE +21 -0
- package/node_modules/side-channel-map/README.md +62 -0
- package/node_modules/side-channel-map/index.d.ts +15 -0
- package/node_modules/side-channel-map/index.js +68 -0
- package/node_modules/side-channel-map/package.json +80 -0
- package/node_modules/side-channel-map/test/index.js +114 -0
- package/node_modules/side-channel-map/tsconfig.json +9 -0
- package/node_modules/side-channel-weakmap/.editorconfig +9 -0
- package/node_modules/side-channel-weakmap/.eslintrc +12 -0
- package/node_modules/side-channel-weakmap/.github/FUNDING.yml +12 -0
- package/node_modules/side-channel-weakmap/.nycrc +13 -0
- package/node_modules/side-channel-weakmap/CHANGELOG.md +28 -0
- package/node_modules/side-channel-weakmap/LICENSE +21 -0
- package/node_modules/side-channel-weakmap/README.md +62 -0
- package/node_modules/side-channel-weakmap/index.d.ts +15 -0
- package/node_modules/side-channel-weakmap/index.js +84 -0
- package/node_modules/side-channel-weakmap/package.json +87 -0
- package/node_modules/side-channel-weakmap/test/index.js +114 -0
- package/node_modules/side-channel-weakmap/tsconfig.json +9 -0
- package/node_modules/which-typed-array/.eslintrc +1 -0
- package/node_modules/which-typed-array/CHANGELOG.md +57 -0
- package/node_modules/which-typed-array/index.d.ts +62 -0
- package/node_modules/which-typed-array/index.js +50 -25
- package/node_modules/which-typed-array/package.json +28 -13
- package/node_modules/which-typed-array/test/index.js +7 -1
- package/node_modules/which-typed-array/tsconfig.json +9 -0
- package/package.json +2 -3
- package/node_modules/@meteorjs/browserify-sign/node_modules/bn.js/README.md +0 -214
- package/node_modules/@meteorjs/browserify-sign/node_modules/bn.js/lib/bn.js +0 -3547
- package/node_modules/@meteorjs/browserify-sign/node_modules/bn.js/package.json +0 -39
- package/node_modules/@meteorjs/browserify-sign/node_modules/hash-base/LICENSE +0 -21
- package/node_modules/@meteorjs/browserify-sign/node_modules/hash-base/README.md +0 -48
- package/node_modules/@meteorjs/browserify-sign/node_modules/hash-base/index.js +0 -138
- package/node_modules/@meteorjs/browserify-sign/node_modules/hash-base/package.json +0 -42
- package/node_modules/@meteorjs/crypto-browserify/node_modules/hash-base/README.md +0 -48
- package/node_modules/@meteorjs/crypto-browserify/node_modules/hash-base/index.js +0 -95
- package/node_modules/@meteorjs/crypto-browserify/node_modules/hash-base/package.json +0 -41
- package/node_modules/available-typed-arrays/.eslintignore +0 -1
- package/node_modules/bn.js/CHANGELOG.md +0 -51
- package/node_modules/cipher-base/.npmignore +0 -1
- package/node_modules/cipher-base/.travis.yml +0 -6
- package/node_modules/cipher-base/test.js +0 -111
- package/node_modules/elliptic/node_modules/bn.js/README.md +0 -200
- package/node_modules/elliptic/node_modules/bn.js/lib/bn.js +0 -3446
- package/node_modules/elliptic/node_modules/bn.js/package.json +0 -36
- package/node_modules/elliptic/package.json +0 -56
- package/node_modules/for-each/.travis.yml +0 -45
- package/node_modules/for-each/test/.eslintrc +0 -8
- package/node_modules/has-proto/CHANGELOG.md +0 -23
- package/node_modules/has-proto/README.md +0 -38
- package/node_modules/has-proto/index.js +0 -11
- package/node_modules/has-proto/test/index.js +0 -19
- package/node_modules/hasown/index.d.ts.map +0 -1
- package/node_modules/is-arguments/.eslintignore +0 -1
- package/node_modules/is-generator-function/.eslintignore +0 -1
- package/node_modules/object-is/.eslintignore +0 -1
- package/node_modules/object.assign/test.html +0 -18458
- package/node_modules/parse-asn1/node_modules/hash-base/LICENSE +0 -21
- package/node_modules/parse-asn1/node_modules/hash-base/README.md +0 -48
- package/node_modules/parse-asn1/node_modules/hash-base/index.js +0 -95
- package/node_modules/parse-asn1/node_modules/hash-base/package.json +0 -41
- /package/node_modules/{elliptic → @meteorjs/browserify-sign/elliptic}/README.md +0 -0
- /package/node_modules/{elliptic → @meteorjs/browserify-sign/elliptic}/lib/elliptic/curve/base.js +0 -0
- /package/node_modules/{elliptic → @meteorjs/browserify-sign/elliptic}/lib/elliptic/curve/edwards.js +0 -0
- /package/node_modules/{elliptic → @meteorjs/browserify-sign/elliptic}/lib/elliptic/curve/index.js +0 -0
- /package/node_modules/{elliptic → @meteorjs/browserify-sign/elliptic}/lib/elliptic/curve/mont.js +0 -0
- /package/node_modules/{elliptic → @meteorjs/browserify-sign/elliptic}/lib/elliptic/curve/short.js +0 -0
- /package/node_modules/{elliptic → @meteorjs/browserify-sign/elliptic}/lib/elliptic/curves.js +0 -0
- /package/node_modules/{elliptic → @meteorjs/browserify-sign/elliptic}/lib/elliptic/ec/index.js +0 -0
- /package/node_modules/{elliptic → @meteorjs/browserify-sign/elliptic}/lib/elliptic/ec/key.js +0 -0
- /package/node_modules/{elliptic → @meteorjs/browserify-sign/elliptic}/lib/elliptic/ec/signature.js +0 -0
- /package/node_modules/{elliptic → @meteorjs/browserify-sign/elliptic}/lib/elliptic/eddsa/index.js +0 -0
- /package/node_modules/{elliptic → @meteorjs/browserify-sign/elliptic}/lib/elliptic/eddsa/key.js +0 -0
- /package/node_modules/{elliptic → @meteorjs/browserify-sign/elliptic}/lib/elliptic/eddsa/signature.js +0 -0
- /package/node_modules/{elliptic → @meteorjs/browserify-sign/elliptic}/lib/elliptic/precomputed/secp256k1.js +0 -0
- /package/node_modules/{elliptic → @meteorjs/browserify-sign/elliptic}/lib/elliptic/utils.js +0 -0
- /package/node_modules/{has-proto → dunder-proto}/.eslintrc +0 -0
|
@@ -0,0 +1,192 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var test = require('tape');
|
|
4
|
+
var v = require('es-value-fixtures');
|
|
5
|
+
var forEach = require('for-each');
|
|
6
|
+
var inspect = require('object-inspect');
|
|
7
|
+
|
|
8
|
+
var abs = require('../abs');
|
|
9
|
+
var floor = require('../floor');
|
|
10
|
+
var isFinite = require('../isFinite');
|
|
11
|
+
var isInteger = require('../isInteger');
|
|
12
|
+
var isNaN = require('../isNaN');
|
|
13
|
+
var isNegativeZero = require('../isNegativeZero');
|
|
14
|
+
var max = require('../max');
|
|
15
|
+
var min = require('../min');
|
|
16
|
+
var mod = require('../mod');
|
|
17
|
+
var pow = require('../pow');
|
|
18
|
+
var round = require('../round');
|
|
19
|
+
var sign = require('../sign');
|
|
20
|
+
|
|
21
|
+
var maxArrayLength = require('../constants/maxArrayLength');
|
|
22
|
+
var maxSafeInteger = require('../constants/maxSafeInteger');
|
|
23
|
+
var maxValue = require('../constants/maxValue');
|
|
24
|
+
|
|
25
|
+
test('abs', function (t) {
|
|
26
|
+
t.equal(abs(-1), 1, 'abs(-1) === 1');
|
|
27
|
+
t.equal(abs(+1), 1, 'abs(+1) === 1');
|
|
28
|
+
t.equal(abs(+0), +0, 'abs(+0) === +0');
|
|
29
|
+
t.equal(abs(-0), +0, 'abs(-0) === +0');
|
|
30
|
+
|
|
31
|
+
t.end();
|
|
32
|
+
});
|
|
33
|
+
|
|
34
|
+
test('floor', function (t) {
|
|
35
|
+
t.equal(floor(-1.1), -2, 'floor(-1.1) === -2');
|
|
36
|
+
t.equal(floor(+1.1), 1, 'floor(+1.1) === 1');
|
|
37
|
+
t.equal(floor(+0), +0, 'floor(+0) === +0');
|
|
38
|
+
t.equal(floor(-0), -0, 'floor(-0) === -0');
|
|
39
|
+
t.equal(floor(-Infinity), -Infinity, 'floor(-Infinity) === -Infinity');
|
|
40
|
+
t.equal(floor(Number(Infinity)), Number(Infinity), 'floor(+Infinity) === +Infinity');
|
|
41
|
+
t.equal(floor(NaN), NaN, 'floor(NaN) === NaN');
|
|
42
|
+
t.equal(floor(0), +0, 'floor(0) === +0');
|
|
43
|
+
t.equal(floor(-0), -0, 'floor(-0) === -0');
|
|
44
|
+
t.equal(floor(1), 1, 'floor(1) === 1');
|
|
45
|
+
t.equal(floor(-1), -1, 'floor(-1) === -1');
|
|
46
|
+
t.equal(floor(1.1), 1, 'floor(1.1) === 1');
|
|
47
|
+
t.equal(floor(-1.1), -2, 'floor(-1.1) === -2');
|
|
48
|
+
t.equal(floor(maxValue), maxValue, 'floor(maxValue) === maxValue');
|
|
49
|
+
t.equal(floor(maxSafeInteger), maxSafeInteger, 'floor(maxSafeInteger) === maxSafeInteger');
|
|
50
|
+
|
|
51
|
+
t.end();
|
|
52
|
+
});
|
|
53
|
+
|
|
54
|
+
test('isFinite', function (t) {
|
|
55
|
+
t.equal(isFinite(0), true, 'isFinite(+0) === true');
|
|
56
|
+
t.equal(isFinite(-0), true, 'isFinite(-0) === true');
|
|
57
|
+
t.equal(isFinite(1), true, 'isFinite(1) === true');
|
|
58
|
+
t.equal(isFinite(Infinity), false, 'isFinite(Infinity) === false');
|
|
59
|
+
t.equal(isFinite(-Infinity), false, 'isFinite(-Infinity) === false');
|
|
60
|
+
t.equal(isFinite(NaN), false, 'isFinite(NaN) === false');
|
|
61
|
+
|
|
62
|
+
forEach(v.nonNumbers, function (nonNumber) {
|
|
63
|
+
t.equal(isFinite(nonNumber), false, 'isFinite(' + inspect(nonNumber) + ') === false');
|
|
64
|
+
});
|
|
65
|
+
|
|
66
|
+
t.end();
|
|
67
|
+
});
|
|
68
|
+
|
|
69
|
+
test('isInteger', function (t) {
|
|
70
|
+
forEach([].concat(
|
|
71
|
+
// @ts-expect-error TS sucks with concat
|
|
72
|
+
v.nonNumbers,
|
|
73
|
+
v.nonIntegerNumbers
|
|
74
|
+
), function (nonInteger) {
|
|
75
|
+
t.equal(isInteger(nonInteger), false, 'isInteger(' + inspect(nonInteger) + ') === false');
|
|
76
|
+
});
|
|
77
|
+
|
|
78
|
+
t.end();
|
|
79
|
+
});
|
|
80
|
+
|
|
81
|
+
test('isNaN', function (t) {
|
|
82
|
+
forEach([].concat(
|
|
83
|
+
// @ts-expect-error TS sucks with concat
|
|
84
|
+
v.nonNumbers,
|
|
85
|
+
v.infinities,
|
|
86
|
+
v.zeroes,
|
|
87
|
+
v.integerNumbers
|
|
88
|
+
), function (nonNaN) {
|
|
89
|
+
t.equal(isNaN(nonNaN), false, 'isNaN(' + inspect(nonNaN) + ') === false');
|
|
90
|
+
});
|
|
91
|
+
|
|
92
|
+
t.equal(isNaN(NaN), true, 'isNaN(NaN) === true');
|
|
93
|
+
|
|
94
|
+
t.end();
|
|
95
|
+
});
|
|
96
|
+
|
|
97
|
+
test('isNegativeZero', function (t) {
|
|
98
|
+
t.equal(isNegativeZero(-0), true, 'isNegativeZero(-0) === true');
|
|
99
|
+
t.equal(isNegativeZero(+0), false, 'isNegativeZero(+0) === false');
|
|
100
|
+
t.equal(isNegativeZero(1), false, 'isNegativeZero(1) === false');
|
|
101
|
+
t.equal(isNegativeZero(-1), false, 'isNegativeZero(-1) === false');
|
|
102
|
+
t.equal(isNegativeZero(NaN), false, 'isNegativeZero(NaN) === false');
|
|
103
|
+
t.equal(isNegativeZero(Infinity), false, 'isNegativeZero(Infinity) === false');
|
|
104
|
+
t.equal(isNegativeZero(-Infinity), false, 'isNegativeZero(-Infinity) === false');
|
|
105
|
+
|
|
106
|
+
forEach(v.nonNumbers, function (nonNumber) {
|
|
107
|
+
t.equal(isNegativeZero(nonNumber), false, 'isNegativeZero(' + inspect(nonNumber) + ') === false');
|
|
108
|
+
});
|
|
109
|
+
|
|
110
|
+
t.end();
|
|
111
|
+
});
|
|
112
|
+
|
|
113
|
+
test('max', function (t) {
|
|
114
|
+
t.equal(max(1, 2), 2, 'max(1, 2) === 2');
|
|
115
|
+
t.equal(max(1, 2, 3), 3, 'max(1, 2, 3) === 3');
|
|
116
|
+
t.equal(max(1, 2, 3, 4), 4, 'max(1, 2, 3, 4) === 4');
|
|
117
|
+
t.equal(max(1, 2, 3, 4, 5), 5, 'max(1, 2, 3, 4, 5) === 5');
|
|
118
|
+
t.equal(max(1, 2, 3, 4, 5, 6), 6, 'max(1, 2, 3, 4, 5, 6) === 6');
|
|
119
|
+
t.equal(max(1, 2, 3, 4, 5, 6, 7), 7, 'max(1, 2, 3, 4, 5, 6, 7) === 7');
|
|
120
|
+
|
|
121
|
+
t.end();
|
|
122
|
+
});
|
|
123
|
+
|
|
124
|
+
test('min', function (t) {
|
|
125
|
+
t.equal(min(1, 2), 1, 'min(1, 2) === 1');
|
|
126
|
+
t.equal(min(1, 2, 3), 1, 'min(1, 2, 3) === 1');
|
|
127
|
+
t.equal(min(1, 2, 3, 4), 1, 'min(1, 2, 3, 4) === 1');
|
|
128
|
+
t.equal(min(1, 2, 3, 4, 5), 1, 'min(1, 2, 3, 4, 5) === 1');
|
|
129
|
+
t.equal(min(1, 2, 3, 4, 5, 6), 1, 'min(1, 2, 3, 4, 5, 6) === 1');
|
|
130
|
+
|
|
131
|
+
t.end();
|
|
132
|
+
});
|
|
133
|
+
|
|
134
|
+
test('mod', function (t) {
|
|
135
|
+
t.equal(mod(1, 2), 1, 'mod(1, 2) === 1');
|
|
136
|
+
t.equal(mod(2, 2), 0, 'mod(2, 2) === 0');
|
|
137
|
+
t.equal(mod(3, 2), 1, 'mod(3, 2) === 1');
|
|
138
|
+
t.equal(mod(4, 2), 0, 'mod(4, 2) === 0');
|
|
139
|
+
t.equal(mod(5, 2), 1, 'mod(5, 2) === 1');
|
|
140
|
+
t.equal(mod(6, 2), 0, 'mod(6, 2) === 0');
|
|
141
|
+
t.equal(mod(7, 2), 1, 'mod(7, 2) === 1');
|
|
142
|
+
t.equal(mod(8, 2), 0, 'mod(8, 2) === 0');
|
|
143
|
+
t.equal(mod(9, 2), 1, 'mod(9, 2) === 1');
|
|
144
|
+
t.equal(mod(10, 2), 0, 'mod(10, 2) === 0');
|
|
145
|
+
t.equal(mod(11, 2), 1, 'mod(11, 2) === 1');
|
|
146
|
+
|
|
147
|
+
t.end();
|
|
148
|
+
});
|
|
149
|
+
|
|
150
|
+
test('pow', function (t) {
|
|
151
|
+
t.equal(pow(2, 2), 4, 'pow(2, 2) === 4');
|
|
152
|
+
t.equal(pow(2, 3), 8, 'pow(2, 3) === 8');
|
|
153
|
+
t.equal(pow(2, 4), 16, 'pow(2, 4) === 16');
|
|
154
|
+
t.equal(pow(2, 5), 32, 'pow(2, 5) === 32');
|
|
155
|
+
t.equal(pow(2, 6), 64, 'pow(2, 6) === 64');
|
|
156
|
+
t.equal(pow(2, 7), 128, 'pow(2, 7) === 128');
|
|
157
|
+
t.equal(pow(2, 8), 256, 'pow(2, 8) === 256');
|
|
158
|
+
t.equal(pow(2, 9), 512, 'pow(2, 9) === 512');
|
|
159
|
+
t.equal(pow(2, 10), 1024, 'pow(2, 10) === 1024');
|
|
160
|
+
|
|
161
|
+
t.end();
|
|
162
|
+
});
|
|
163
|
+
|
|
164
|
+
test('round', function (t) {
|
|
165
|
+
t.equal(round(1.1), 1, 'round(1.1) === 1');
|
|
166
|
+
t.equal(round(1.5), 2, 'round(1.5) === 2');
|
|
167
|
+
t.equal(round(1.9), 2, 'round(1.9) === 2');
|
|
168
|
+
|
|
169
|
+
t.end();
|
|
170
|
+
});
|
|
171
|
+
|
|
172
|
+
test('sign', function (t) {
|
|
173
|
+
t.equal(sign(-1), -1, 'sign(-1) === -1');
|
|
174
|
+
t.equal(sign(+1), +1, 'sign(+1) === +1');
|
|
175
|
+
t.equal(sign(+0), +0, 'sign(+0) === +0');
|
|
176
|
+
t.equal(sign(-0), -0, 'sign(-0) === -0');
|
|
177
|
+
t.equal(sign(NaN), NaN, 'sign(NaN) === NaN');
|
|
178
|
+
t.equal(sign(Infinity), +1, 'sign(Infinity) === +1');
|
|
179
|
+
t.equal(sign(-Infinity), -1, 'sign(-Infinity) === -1');
|
|
180
|
+
t.equal(sign(maxValue), +1, 'sign(maxValue) === +1');
|
|
181
|
+
t.equal(sign(maxSafeInteger), +1, 'sign(maxSafeInteger) === +1');
|
|
182
|
+
|
|
183
|
+
t.end();
|
|
184
|
+
});
|
|
185
|
+
|
|
186
|
+
test('constants', function (t) {
|
|
187
|
+
t.equal(typeof maxArrayLength, 'number', 'typeof maxArrayLength === "number"');
|
|
188
|
+
t.equal(typeof maxSafeInteger, 'number', 'typeof maxSafeInteger === "number"');
|
|
189
|
+
t.equal(typeof maxValue, 'number', 'typeof maxValue === "number"');
|
|
190
|
+
|
|
191
|
+
t.end();
|
|
192
|
+
});
|
|
@@ -452,16 +452,16 @@
|
|
|
452
452
|
var w = this.words[i];
|
|
453
453
|
var word = (((w << off) | carry) & 0xffffff).toString(16);
|
|
454
454
|
carry = (w >>> (24 - off)) & 0xffffff;
|
|
455
|
-
if (carry !== 0 || i !== this.length - 1) {
|
|
456
|
-
out = zeros[6 - word.length] + word + out;
|
|
457
|
-
} else {
|
|
458
|
-
out = word + out;
|
|
459
|
-
}
|
|
460
455
|
off += 2;
|
|
461
456
|
if (off >= 26) {
|
|
462
457
|
off -= 26;
|
|
463
458
|
i--;
|
|
464
459
|
}
|
|
460
|
+
if (carry !== 0 || i !== this.length - 1) {
|
|
461
|
+
out = zeros[6 - word.length] + word + out;
|
|
462
|
+
} else {
|
|
463
|
+
out = word + out;
|
|
464
|
+
}
|
|
465
465
|
}
|
|
466
466
|
if (carry !== 0) {
|
|
467
467
|
out = carry.toString(16) + out;
|
|
@@ -1921,6 +1921,7 @@
|
|
|
1921
1921
|
this.words[i] = carry;
|
|
1922
1922
|
this.length++;
|
|
1923
1923
|
}
|
|
1924
|
+
this.length = num === 0 ? 1 : this.length;
|
|
1924
1925
|
|
|
1925
1926
|
return this;
|
|
1926
1927
|
};
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
// NOTE: This could be potentionally used to generate loop-less multiplications
|
|
4
|
+
function genCombMulTo (alen, blen) {
|
|
5
|
+
var len = alen + blen - 1;
|
|
6
|
+
var src = [
|
|
7
|
+
'var a = self.words;',
|
|
8
|
+
'var b = num.words;',
|
|
9
|
+
'var o = out.words;',
|
|
10
|
+
'var c = 0;',
|
|
11
|
+
'var lo;',
|
|
12
|
+
'var mid;',
|
|
13
|
+
'var hi;'
|
|
14
|
+
];
|
|
15
|
+
for (var i = 0; i < alen; i++) {
|
|
16
|
+
src.push('var a' + i + ' = a[' + i + '] | 0;');
|
|
17
|
+
src.push('var al' + i + ' = a' + i + ' & 0x1fff;');
|
|
18
|
+
src.push('var ah' + i + ' = a' + i + ' >>> 13;');
|
|
19
|
+
}
|
|
20
|
+
for (i = 0; i < blen; i++) {
|
|
21
|
+
src.push('var b' + i + ' = b[' + i + '] | 0;');
|
|
22
|
+
src.push('var bl' + i + ' = b' + i + ' & 0x1fff;');
|
|
23
|
+
src.push('var bh' + i + ' = b' + i + ' >>> 13;');
|
|
24
|
+
}
|
|
25
|
+
src.push('');
|
|
26
|
+
src.push('out.negative = self.negative ^ num.negative;');
|
|
27
|
+
src.push('out.length = ' + len + ';');
|
|
28
|
+
|
|
29
|
+
for (var k = 0; k < len; k++) {
|
|
30
|
+
var minJ = Math.max(0, k - alen + 1);
|
|
31
|
+
var maxJ = Math.min(k, blen - 1);
|
|
32
|
+
|
|
33
|
+
src.push('\/* k = ' + k + ' *\/');
|
|
34
|
+
src.push('var w' + k + ' = c;');
|
|
35
|
+
src.push('c = 0;');
|
|
36
|
+
for (var j = minJ; j <= maxJ; j++) {
|
|
37
|
+
i = k - j;
|
|
38
|
+
|
|
39
|
+
src.push('lo = Math.imul(al' + i + ', bl' + j + ');');
|
|
40
|
+
src.push('mid = Math.imul(al' + i + ', bh' + j + ');');
|
|
41
|
+
src.push('mid = (mid + Math.imul(ah' + i + ', bl' + j + ')) | 0;');
|
|
42
|
+
src.push('hi = Math.imul(ah' + i + ', bh' + j + ');');
|
|
43
|
+
|
|
44
|
+
src.push('w' + k + ' = (w' + k + ' + lo) | 0;');
|
|
45
|
+
src.push('w' + k + ' = (w' + k + ' + ((mid & 0x1fff) << 13)) | 0;');
|
|
46
|
+
src.push('c = (c + hi) | 0;');
|
|
47
|
+
src.push('c = (c + (mid >>> 13)) | 0;');
|
|
48
|
+
src.push('c = (c + (w' + k + ' >>> 26)) | 0;');
|
|
49
|
+
src.push('w' + k + ' &= 0x3ffffff;');
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
// Store in separate step for better memory access
|
|
53
|
+
for (k = 0; k < len; k++) {
|
|
54
|
+
src.push('o[' + k + '] = w' + k + ';');
|
|
55
|
+
}
|
|
56
|
+
src.push('if (c !== 0) {',
|
|
57
|
+
' o[' + k + '] = c;',
|
|
58
|
+
' out.length++;',
|
|
59
|
+
'}',
|
|
60
|
+
'return out;');
|
|
61
|
+
|
|
62
|
+
return src.join('\n');
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
console.log(genCombMulTo(10, 10));
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
function genCombMulTo (alen, blen) {
|
|
4
|
+
var len = alen + blen - 1;
|
|
5
|
+
var src = [
|
|
6
|
+
'var a = self.words;',
|
|
7
|
+
'var b = num.words;',
|
|
8
|
+
'var o = out.words;',
|
|
9
|
+
'var c = 0;',
|
|
10
|
+
'var lo;',
|
|
11
|
+
'var mid;',
|
|
12
|
+
'var hi;'
|
|
13
|
+
];
|
|
14
|
+
for (var i = 0; i < alen; i++) {
|
|
15
|
+
src.push('var a' + i + ' = a[' + i + '] | 0;');
|
|
16
|
+
src.push('var al' + i + ' = a' + i + ' & 0x1fff;');
|
|
17
|
+
src.push('var ah' + i + ' = a' + i + ' >>> 13;');
|
|
18
|
+
}
|
|
19
|
+
for (i = 0; i < blen; i++) {
|
|
20
|
+
src.push('var b' + i + ' = b[' + i + '] | 0;');
|
|
21
|
+
src.push('var bl' + i + ' = b' + i + ' & 0x1fff;');
|
|
22
|
+
src.push('var bh' + i + ' = b' + i + ' >>> 13;');
|
|
23
|
+
}
|
|
24
|
+
src.push('');
|
|
25
|
+
src.push('out.negative = self.negative ^ num.negative;');
|
|
26
|
+
src.push('out.length = ' + len + ';');
|
|
27
|
+
|
|
28
|
+
for (var k = 0; k < len; k++) {
|
|
29
|
+
var minJ = Math.max(0, k - alen + 1);
|
|
30
|
+
var maxJ = Math.min(k, blen - 1);
|
|
31
|
+
|
|
32
|
+
src.push('\/* k = ' + k + ' *\/');
|
|
33
|
+
src.push('lo = Math.imul(al' + (k - minJ) + ', bl' + minJ + ');');
|
|
34
|
+
src.push('mid = Math.imul(al' + (k - minJ) + ', bh' + minJ + ');');
|
|
35
|
+
src.push(
|
|
36
|
+
'mid = (mid + Math.imul(ah' + (k - minJ) + ', bl' + minJ + ')) | 0;');
|
|
37
|
+
src.push('hi = Math.imul(ah' + (k - minJ) + ', bh' + minJ + ');');
|
|
38
|
+
|
|
39
|
+
for (var j = minJ + 1; j <= maxJ; j++) {
|
|
40
|
+
i = k - j;
|
|
41
|
+
|
|
42
|
+
src.push('lo = (lo + Math.imul(al' + i + ', bl' + j + ')) | 0;');
|
|
43
|
+
src.push('mid = (mid + Math.imul(al' + i + ', bh' + j + ')) | 0;');
|
|
44
|
+
src.push('mid = (mid + Math.imul(ah' + i + ', bl' + j + ')) | 0;');
|
|
45
|
+
src.push('hi = (hi + Math.imul(ah' + i + ', bh' + j + ')) | 0;');
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
src.push('var w' + k + ' = (((c + lo) | 0) + ((mid & 0x1fff) << 13)) | 0;');
|
|
49
|
+
src.push('c = (((hi + (mid >>> 13)) | 0) + (w' + k + ' >>> 26)) | 0;');
|
|
50
|
+
src.push('w' + k + ' &= 0x3ffffff;');
|
|
51
|
+
}
|
|
52
|
+
// Store in separate step for better memory access
|
|
53
|
+
for (k = 0; k < len; k++) {
|
|
54
|
+
src.push('o[' + k + '] = w' + k + ';');
|
|
55
|
+
}
|
|
56
|
+
src.push('if (c !== 0) {',
|
|
57
|
+
' o[' + k + '] = c;',
|
|
58
|
+
' out.length++;',
|
|
59
|
+
'}',
|
|
60
|
+
'return out;');
|
|
61
|
+
|
|
62
|
+
return src.join('\n');
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
console.log(genCombMulTo(10, 10));
|
|
@@ -5,6 +5,26 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [v1.13.4](https://github.com/inspect-js/object-inspect/compare/v1.13.3...v1.13.4) - 2025-02-04
|
|
9
|
+
|
|
10
|
+
### Commits
|
|
11
|
+
|
|
12
|
+
- [Fix] avoid being fooled by a `Symbol.toStringTag` [`fa5870d`](https://github.com/inspect-js/object-inspect/commit/fa5870da468a525d2f20193700f70752f506cbf7)
|
|
13
|
+
- [Tests] fix tests in node v6.0 - v6.4 [`2abfe1b`](https://github.com/inspect-js/object-inspect/commit/2abfe1bc3c69f9293c07c5cd65a9d7d87a628b84)
|
|
14
|
+
- [Dev Deps] update `es-value-fixtures`, `for-each`, `has-symbols` [`3edfb01`](https://github.com/inspect-js/object-inspect/commit/3edfb01cc8cce220fba0dfdfe2dc8bc955758cdd)
|
|
15
|
+
|
|
16
|
+
## [v1.13.3](https://github.com/inspect-js/object-inspect/compare/v1.13.2...v1.13.3) - 2024-11-09
|
|
17
|
+
|
|
18
|
+
### Commits
|
|
19
|
+
|
|
20
|
+
- [actions] split out node 10-20, and 20+ [`44395a8`](https://github.com/inspect-js/object-inspect/commit/44395a8fc1deda6718a5e125e86b9ffcaa1c7580)
|
|
21
|
+
- [Fix] `quoteStyle`: properly escape only the containing quotes [`5137f8f`](https://github.com/inspect-js/object-inspect/commit/5137f8f7bea69a7fc671bb683fd35f244f38fc52)
|
|
22
|
+
- [Refactor] clean up `quoteStyle` code [`450680c`](https://github.com/inspect-js/object-inspect/commit/450680cd50de4e689ee3b8e1d6db3a1bcf3fc18c)
|
|
23
|
+
- [Tests] add `quoteStyle` escaping tests [`e997c59`](https://github.com/inspect-js/object-inspect/commit/e997c595aeaea84fd98ca35d7e1c3b5ab3ae26e0)
|
|
24
|
+
- [Dev Deps] update `auto-changelog`, `es-value-fixtures`, `tape` [`d5a469c`](https://github.com/inspect-js/object-inspect/commit/d5a469c99ec07ccaeafc36ac4b36a93285086d48)
|
|
25
|
+
- [Tests] replace `aud` with `npm audit` [`fb7815f`](https://github.com/inspect-js/object-inspect/commit/fb7815f9b72cae277a04f65bbb0543f85b88be62)
|
|
26
|
+
- [Dev Deps] update `mock-property` [`11c817b`](https://github.com/inspect-js/object-inspect/commit/11c817bf10392aa017755962ba6bc89d731359ee)
|
|
27
|
+
|
|
8
28
|
## [v1.13.2](https://github.com/inspect-js/object-inspect/compare/v1.13.1...v1.13.2) - 2024-06-21
|
|
9
29
|
|
|
10
30
|
### Commits
|
|
@@ -69,10 +69,21 @@ var utilInspect = require('./util.inspect');
|
|
|
69
69
|
var inspectCustom = utilInspect.custom;
|
|
70
70
|
var inspectSymbol = isSymbol(inspectCustom) ? inspectCustom : null;
|
|
71
71
|
|
|
72
|
+
var quotes = {
|
|
73
|
+
__proto__: null,
|
|
74
|
+
'double': '"',
|
|
75
|
+
single: "'"
|
|
76
|
+
};
|
|
77
|
+
var quoteREs = {
|
|
78
|
+
__proto__: null,
|
|
79
|
+
'double': /(["\\])/g,
|
|
80
|
+
single: /(['\\])/g
|
|
81
|
+
};
|
|
82
|
+
|
|
72
83
|
module.exports = function inspect_(obj, options, depth, seen) {
|
|
73
84
|
var opts = options || {};
|
|
74
85
|
|
|
75
|
-
if (has(opts, 'quoteStyle') && (
|
|
86
|
+
if (has(opts, 'quoteStyle') && !has(quotes, opts.quoteStyle)) {
|
|
76
87
|
throw new TypeError('option "quoteStyle" must be "single" or "double"');
|
|
77
88
|
}
|
|
78
89
|
if (
|
|
@@ -267,7 +278,8 @@ module.exports = function inspect_(obj, options, depth, seen) {
|
|
|
267
278
|
};
|
|
268
279
|
|
|
269
280
|
function wrapQuotes(s, defaultStyle, opts) {
|
|
270
|
-
var
|
|
281
|
+
var style = opts.quoteStyle || defaultStyle;
|
|
282
|
+
var quoteChar = quotes[style];
|
|
271
283
|
return quoteChar + s + quoteChar;
|
|
272
284
|
}
|
|
273
285
|
|
|
@@ -275,13 +287,16 @@ function quote(s) {
|
|
|
275
287
|
return $replace.call(String(s), /"/g, '"');
|
|
276
288
|
}
|
|
277
289
|
|
|
278
|
-
function
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
function
|
|
282
|
-
function
|
|
283
|
-
function
|
|
284
|
-
function
|
|
290
|
+
function canTrustToString(obj) {
|
|
291
|
+
return !toStringTag || !(typeof obj === 'object' && (toStringTag in obj || typeof obj[toStringTag] !== 'undefined'));
|
|
292
|
+
}
|
|
293
|
+
function isArray(obj) { return toStr(obj) === '[object Array]' && canTrustToString(obj); }
|
|
294
|
+
function isDate(obj) { return toStr(obj) === '[object Date]' && canTrustToString(obj); }
|
|
295
|
+
function isRegExp(obj) { return toStr(obj) === '[object RegExp]' && canTrustToString(obj); }
|
|
296
|
+
function isError(obj) { return toStr(obj) === '[object Error]' && canTrustToString(obj); }
|
|
297
|
+
function isString(obj) { return toStr(obj) === '[object String]' && canTrustToString(obj); }
|
|
298
|
+
function isNumber(obj) { return toStr(obj) === '[object Number]' && canTrustToString(obj); }
|
|
299
|
+
function isBoolean(obj) { return toStr(obj) === '[object Boolean]' && canTrustToString(obj); }
|
|
285
300
|
|
|
286
301
|
// Symbol and BigInt do have Symbol.toStringTag by spec, so that can't be used to eliminate false positives
|
|
287
302
|
function isSymbol(obj) {
|
|
@@ -425,8 +440,10 @@ function inspectString(str, opts) {
|
|
|
425
440
|
var trailer = '... ' + remaining + ' more character' + (remaining > 1 ? 's' : '');
|
|
426
441
|
return inspectString($slice.call(str, 0, opts.maxStringLength), opts) + trailer;
|
|
427
442
|
}
|
|
443
|
+
var quoteRE = quoteREs[opts.quoteStyle || 'single'];
|
|
444
|
+
quoteRE.lastIndex = 0;
|
|
428
445
|
// eslint-disable-next-line no-control-regex
|
|
429
|
-
var s = $replace.call($replace.call(str,
|
|
446
|
+
var s = $replace.call($replace.call(str, quoteRE, '\\$1'), /[\x00-\x1f]/g, lowbyte);
|
|
430
447
|
return wrapQuotes(s, 'single', opts);
|
|
431
448
|
}
|
|
432
449
|
|
|
@@ -1,33 +1,34 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "object-inspect",
|
|
3
|
-
"version": "1.13.
|
|
3
|
+
"version": "1.13.4",
|
|
4
4
|
"description": "string representations of objects in node and the browser",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"sideEffects": false,
|
|
7
7
|
"devDependencies": {
|
|
8
8
|
"@ljharb/eslint-config": "^21.1.1",
|
|
9
9
|
"@pkgjs/support": "^0.0.6",
|
|
10
|
-
"auto-changelog": "^2.
|
|
10
|
+
"auto-changelog": "^2.5.0",
|
|
11
11
|
"core-js": "^2.6.12",
|
|
12
12
|
"error-cause": "^1.0.8",
|
|
13
|
-
"es-value-fixtures": "^1.
|
|
13
|
+
"es-value-fixtures": "^1.7.1",
|
|
14
14
|
"eslint": "=8.8.0",
|
|
15
|
-
"for-each": "^0.3.
|
|
15
|
+
"for-each": "^0.3.4",
|
|
16
16
|
"functions-have-names": "^1.2.3",
|
|
17
17
|
"glob": "=10.3.7",
|
|
18
18
|
"globalthis": "^1.0.4",
|
|
19
|
-
"has-symbols": "^1.0
|
|
19
|
+
"has-symbols": "^1.1.0",
|
|
20
20
|
"has-tostringtag": "^1.0.2",
|
|
21
21
|
"in-publish": "^2.0.1",
|
|
22
22
|
"jackspeak": "=2.1.1",
|
|
23
23
|
"make-arrow-function": "^1.2.0",
|
|
24
|
-
"mock-property": "^1.0
|
|
24
|
+
"mock-property": "^1.1.0",
|
|
25
25
|
"npmignore": "^0.3.1",
|
|
26
26
|
"nyc": "^10.3.2",
|
|
27
27
|
"safe-publish-latest": "^2.0.0",
|
|
28
28
|
"safer-buffer": "^2.1.2",
|
|
29
|
+
"semver": "^6.3.1",
|
|
29
30
|
"string.prototype.repeat": "^1.0.0",
|
|
30
|
-
"tape": "^5.
|
|
31
|
+
"tape": "^5.9.0"
|
|
31
32
|
},
|
|
32
33
|
"scripts": {
|
|
33
34
|
"prepack": "npmignore --auto --commentLines=autogenerated",
|
|
@@ -39,7 +40,7 @@
|
|
|
39
40
|
"test": "npm run tests-only && npm run test:corejs",
|
|
40
41
|
"tests-only": "nyc tape 'test/*.js'",
|
|
41
42
|
"test:corejs": "nyc tape test-core-js.js 'test/*.js'",
|
|
42
|
-
"posttest": "npx
|
|
43
|
+
"posttest": "npx npm@'>=10.2' audit --production",
|
|
43
44
|
"version": "auto-changelog && git add CHANGELOG.md",
|
|
44
45
|
"postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
|
|
45
46
|
},
|
|
@@ -13,5 +13,14 @@ test('quoteStyle option', function (t) {
|
|
|
13
13
|
t['throws'](function () { inspect(null, { quoteStyle: NaN }); }, 'NaN is not a valid value');
|
|
14
14
|
t['throws'](function () { inspect(null, { quoteStyle: function () {} }); }, 'a function is not a valid value');
|
|
15
15
|
|
|
16
|
+
t.equal(inspect('"', { quoteStyle: 'single' }), '\'"\'', 'double quote, quoteStyle: "single"');
|
|
17
|
+
t.equal(inspect('"', { quoteStyle: 'double' }), '"\\""', 'double quote, quoteStyle: "double"');
|
|
18
|
+
|
|
19
|
+
t.equal(inspect('\'', { quoteStyle: 'single' }), '\'\\\'\'', 'single quote, quoteStyle: "single"');
|
|
20
|
+
t.equal(inspect('\'', { quoteStyle: 'double' }), '"\'"', 'single quote, quoteStyle: "double"');
|
|
21
|
+
|
|
22
|
+
t.equal(inspect('`', { quoteStyle: 'single' }), '\'`\'', 'backtick, quoteStyle: "single"');
|
|
23
|
+
t.equal(inspect('`', { quoteStyle: 'double' }), '"`"', 'backtick, quoteStyle: "double"');
|
|
24
|
+
|
|
16
25
|
t.end();
|
|
17
26
|
});
|
|
@@ -5,6 +5,8 @@ var test = require('tape');
|
|
|
5
5
|
var mockProperty = require('mock-property');
|
|
6
6
|
var hasSymbols = require('has-symbols/shams')();
|
|
7
7
|
var hasToStringTag = require('has-tostringtag/shams')();
|
|
8
|
+
var forEach = require('for-each');
|
|
9
|
+
var semver = require('semver');
|
|
8
10
|
|
|
9
11
|
test('values', function (t) {
|
|
10
12
|
t.plan(1);
|
|
@@ -209,3 +211,51 @@ test('RegExps', function (t) {
|
|
|
209
211
|
|
|
210
212
|
t.end();
|
|
211
213
|
});
|
|
214
|
+
|
|
215
|
+
test('Proxies', { skip: typeof Proxy !== 'function' || !hasToStringTag }, function (t) {
|
|
216
|
+
var target = { proxy: true };
|
|
217
|
+
var fake = new Proxy(target, { has: function () { return false; } });
|
|
218
|
+
|
|
219
|
+
// needed to work around a weird difference in node v6.0 - v6.4 where non-present properties are not logged
|
|
220
|
+
var isNode60 = semver.satisfies(process.version, '6.0 - 6.4');
|
|
221
|
+
|
|
222
|
+
forEach([
|
|
223
|
+
'Boolean',
|
|
224
|
+
'Number',
|
|
225
|
+
'String',
|
|
226
|
+
'Symbol',
|
|
227
|
+
'Date'
|
|
228
|
+
], function (tag) {
|
|
229
|
+
target[Symbol.toStringTag] = tag;
|
|
230
|
+
|
|
231
|
+
t.equal(
|
|
232
|
+
inspect(fake),
|
|
233
|
+
'{ ' + (isNode60 ? '' : 'proxy: true, ') + '[Symbol(Symbol.toStringTag)]: \'' + tag + '\' }',
|
|
234
|
+
'Proxy for + ' + tag + ' shows as the target, which has no slots'
|
|
235
|
+
);
|
|
236
|
+
});
|
|
237
|
+
|
|
238
|
+
t.end();
|
|
239
|
+
});
|
|
240
|
+
|
|
241
|
+
test('fakers', { skip: !hasToStringTag }, function (t) {
|
|
242
|
+
var target = { proxy: false };
|
|
243
|
+
|
|
244
|
+
forEach([
|
|
245
|
+
'Boolean',
|
|
246
|
+
'Number',
|
|
247
|
+
'String',
|
|
248
|
+
'Symbol',
|
|
249
|
+
'Date'
|
|
250
|
+
], function (tag) {
|
|
251
|
+
target[Symbol.toStringTag] = tag;
|
|
252
|
+
|
|
253
|
+
t.equal(
|
|
254
|
+
inspect(target),
|
|
255
|
+
'{ proxy: false, [Symbol(Symbol.toStringTag)]: \'' + tag + '\' }',
|
|
256
|
+
'Object pretending to be ' + tag + ' does not trick us'
|
|
257
|
+
);
|
|
258
|
+
});
|
|
259
|
+
|
|
260
|
+
t.end();
|
|
261
|
+
});
|
|
@@ -5,6 +5,31 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [v1.1.6](https://github.com/es-shims/object-is/compare/v1.1.5...v1.1.6) - 2024-02-27
|
|
9
|
+
|
|
10
|
+
### Commits
|
|
11
|
+
|
|
12
|
+
- [actions] reuse common workflows [`f8d0c06`](https://github.com/es-shims/object-is/commit/f8d0c0617901b4b220f2bbbaff8c9ec7f22891c6)
|
|
13
|
+
- [actions] use `node/install` instead of `node/run` [`90fc019`](https://github.com/es-shims/object-is/commit/90fc01955dc677fef745f0dc4164e2144b047997)
|
|
14
|
+
- [actions] update workflows [`37339d8`](https://github.com/es-shims/object-is/commit/37339d870aacad9f524cb685c0075aed78e9bd6e)
|
|
15
|
+
- [meta] use `npmignore` to autogenerate an npmignore file [`a257c19`](https://github.com/es-shims/object-is/commit/a257c19d55c275ac44892b1d2d98a5d06e976943)
|
|
16
|
+
- [readme] fix badges [`50af053`](https://github.com/es-shims/object-is/commit/50af053d4d8ee02657d71f784c31b372905187a7)
|
|
17
|
+
- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `@es-shims/api`, `safe-publish-latest`, `tape` [`86058c6`](https://github.com/es-shims/object-is/commit/86058c65153dea90d18ff969244bdc610f382046)
|
|
18
|
+
- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud`, `auto-changelog`, `functions-have-names`, `has-symbols`, `tape` [`d5484eb`](https://github.com/es-shims/object-is/commit/d5484eb02a44482de29ce95ccfd01e885d0ff83b)
|
|
19
|
+
- [actions] update rebase action to use reusable workflow [`68075c5`](https://github.com/es-shims/object-is/commit/68075c5bd0e35b51e815e7fd95bb90cc54deb699)
|
|
20
|
+
- [actions] update codecov uploader [`f12fbb2`](https://github.com/es-shims/object-is/commit/f12fbb2f23b43c2d982fd00c95ff98b01e8747a1)
|
|
21
|
+
- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud`, `auto-changelog`, `has-symbols`, `tape` [`43eb235`](https://github.com/es-shims/object-is/commit/43eb235ffa1dd258ff5ef990fd2f0ce78ce40ccc)
|
|
22
|
+
- [Dev Deps] update `@es-shims/api`, `@ljharb/eslint-config`, `aud`, `npmignore`, `tape` [`f306966`](https://github.com/es-shims/object-is/commit/f306966e53fac2e24dd11dfe6cf31a8ae20a08da)
|
|
23
|
+
- [readme] add actions and codecov badges [`e443b4a`](https://github.com/es-shims/object-is/commit/e443b4a3d0b01683cb6fec59916ad4ec463e9de7)
|
|
24
|
+
- [readme] remove travis badge [`5165adc`](https://github.com/es-shims/object-is/commit/5165adccf9e8373f38a01e7a5887b42a4229ca2b)
|
|
25
|
+
- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `tape` [`e7ccf56`](https://github.com/es-shims/object-is/commit/e7ccf56f84434f6671fae1d1fe4945f5b3a84120)
|
|
26
|
+
- [Deps] update `call-bind`, `define-properties` [`a3052db`](https://github.com/es-shims/object-is/commit/a3052db9e272c5d544553a7f43c916689e8cca9a)
|
|
27
|
+
- [readme] fix URLs [`ac37ea6`](https://github.com/es-shims/object-is/commit/ac37ea68b2a11ef7ebff694e6c4f308c735240ea)
|
|
28
|
+
- [readme] assert.notOk -> assert.equal [`7fe769f`](https://github.com/es-shims/object-is/commit/7fe769fc8293d8756ed2d31c4d12afc0581498b7)
|
|
29
|
+
- [Deps] update `call-bind` [`b965cd3`](https://github.com/es-shims/object-is/commit/b965cd319e1c397a5ef7dc6dffc9a5bd4329d408)
|
|
30
|
+
- [Dev Deps] update `tape` [`a737830`](https://github.com/es-shims/object-is/commit/a737830a051cdc650c3bfb78b085586c9fd7cd13)
|
|
31
|
+
- [Deps] update `define-properties`, `es-abstract` [`441eafb`](https://github.com/es-shims/object-is/commit/441eafbca4e32d76dc16bea6b73ee794296e2c0c)
|
|
32
|
+
|
|
8
33
|
## [v1.1.5](https://github.com/es-shims/object-is/compare/v1.1.4...v1.1.5) - 2021-02-20
|
|
9
34
|
|
|
10
35
|
### Commits
|