UNPKG
0xweb
Version:
latest (0.11.2)
0.11.2
0.11.1
0.11.0
0.10.98
0.10.95
0.10.93
0.10.91
0.10.90
0.10.89
0.10.87
0.10.86
0.10.85
0.10.84
0.10.83
0.10.82
0.10.81
0.10.80
0.10.79
0.10.78
0.10.76
0.10.75
0.10.74
0.10.73
0.10.70
0.10.69
0.10.68
0.10.64
0.10.61
0.10.59
0.10.57
0.10.56
0.10.55
0.10.54
0.10.53
0.10.52
0.10.51
0.10.47
0.10.46
0.10.45
0.10.44
0.10.43
0.10.42
0.10.41
0.10.40
0.10.39
0.10.38
0.10.37
0.10.35
0.10.34
0.10.33
0.10.32
0.10.31
0.10.29
0.10.28
0.10.27
0.10.23
0.10.22
0.10.21
0.10.19
0.10.18
0.10.17
0.10.16
0.10.15
0.10.14
0.10.13
0.10.12
0.10.11
0.10.10
0.10.9
0.10.8
0.10.7
0.10.6
0.10.5
0.10.4
0.10.3
0.10.2
0.10.1
0.9.97
0.9.96
0.9.95
0.9.94
0.9.93
0.9.92
0.9.91
0.9.90
0.9.89
0.9.88
0.9.87
0.9.86
0.9.85
0.9.84
0.9.83
0.9.82
0.9.80
0.9.79
0.9.78
0.9.77
0.9.76
0.9.75
0.9.74
0.9.73
0.9.72
0.9.71
0.9.70
0.9.69
0.9.68
0.9.67
0.9.66
0.9.65
0.9.64
0.9.63
0.9.62
0.9.61
0.9.60
0.9.58
0.9.57
0.9.56
0.9.55
0.9.54
0.9.53
0.9.52
0.9.51
0.9.50
0.9.49
0.9.48
0.9.47
0.9.46
0.9.45
0.9.44
0.9.43
0.9.42
0.9.41
0.9.40
0.9.39
0.9.38
0.9.37
0.9.36
0.9.35
0.9.34
0.9.33
0.9.32
0.9.31
0.9.30
0.9.29
0.9.28
0.9.27
0.9.26
0.9.25
0.9.24
0.9.23
0.9.22
0.9.21
0.9.20
0.9.19
0.9.18
0.9.17
0.9.16
0.9.15
0.9.14
0.9.12
0.9.10
0.9.9
Contract package manager and other web3 tools
0xweb.org
0xweb-org/0xweb
0xweb
/
dequanto
/
src
/
evm
/
utils
/
BigNumber.ts
10 lines
(8 loc)
•
208 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
export
namespace
BigNumber
{
export
function
isInstance
(
mix
): mix is
bigint
{
return
typeof
mix ===
'bigint'
; }
export
function
isZero
(
mix
:
bigint
) {
return
mix ===
0n
; } }