发现 BigInt=require('big-integer') 可能导致和原生 BigInt 的命名冲突,改为 bigint,同时把可以用原生 BigInt 的都用 BigInt。发现 /^[b|B]/ 这种写法会识别 |,改为 /^[bB]/

This commit is contained in:
Luk
2024-10-05 15:47:17 +08:00
parent 43b9bd6898
commit 40197b2905
2 changed files with 41 additions and 19 deletions

View File

@@ -6,7 +6,7 @@
"dependencies": {
"base32-decode": "^1.0.0",
"base32-encode": "^1.2.0",
"big-integer": "^1.6.51",
"big-integer": "^1.6.52",
"bip39": "^3.0.4",
"bs58check": "^2.1.2",
"eccrypto-js": "^5.4.0",