UNPKG
validator
Version:
latest (13.15.15)
13.15.15
13.15.0
13.12.0
13.11.0
13.9.0
13.7.0
13.6.0
13.5.2
13.5.1
13.5.0
13.1.17
13.1.1
13.1.0
13.0.0
12.2.0
12.1.0
12.0.0
11.1.0
11.0.0
10.11.0
10.10.0
10.9.0
10.8.0
10.7.1
10.7.0
10.6.0
10.5.0
10.4.0
10.3.0
10.2.0
10.1.0
10.0.0
9.4.1
9.4.0
9.3.0
9.2.0
9.1.2
9.1.1
9.1.0
9.0.0
8.2.0
8.1.0
8.0.0
7.2.0
7.1.0
7.0.0
6.3.0
6.2.1
6.2.0
6.1.0
6.0.0
5.7.0
5.6.0
5.5.0
5.4.0
5.3.0
5.2.0
5.1.0
5.0.0
4.9.0
4.8.0
4.7.1
4.7.0
4.6.1
4.6.0
4.5.2
4.5.1
4.5.0
4.4.0
4.3.0
4.2.1
4.2.0
4.1.0
4.0.6
4.0.5
4.0.4
4.0.3
4.0.2
4.0.1
4.0.0
3.43.0
3.42.0
3.41.3
3.41.2
3.41.1
3.41.0
3.40.1
3.40.0
3.39.0
3.38.0
3.37.0
3.36.0
3.35.0
3.34.0
3.33.0
3.32.0
3.30.0
3.29.0
3.28.0
3.27.0
3.26.0
3.25.0
3.24.0
3.23.0
3.22.2
3.22.1
3.22.0
3.21.0
3.20.0
3.19.1
3.19.0
3.18.1
3.18.0
3.17.2
3.17.1
3.17.0
3.16.1
3.16.0
3.15.0
3.14.1
3.14.0
3.13.0
3.12.0
3.11.2
3.11.1
3.11.0
3.10.0
3.9.0
3.8.0
3.7.0
3.6.0
3.5.1
3.5.0
3.4.0
3.3.0
3.2.1
3.2.0
3.1.0
3.0.0
2.1.0
2.0.0
1.5.1
1.5.0
1.4.0
1.3.0
1.2.2
1.2.1
1.2.0
1.1.3
1.1.2
1.1.1
1.1.0
1.0.0
0.5.0
0.4.28
0.4.27
0.4.25
0.4.24
0.4.23
0.4.22
0.4.21
0.4.20
0.4.19
0.4.18
0.4.17
0.4.16
0.4.15
0.4.13
0.4.12
0.4.11
0.4.10
0.4.9
0.4.8
0.4.7
0.4.6
0.4.6-3
0.4.6-2
0.4.6-1
0.4.5
0.4.4
0.4.3
0.4.2
0.4.1
0.4.0
0.3.9
0.3.8
0.3.7
0.3.6
0.3.5
0.3.4
0.3.2
0.3.1
0.3.0
0.2.9
0.2.8
0.2.7
0.2.6
0.2.5
0.2.4
0.2.3
0.2.2
0.2.1
0.2.0
0.1.9
0.1.8
0.1.7
0.1.6
0.1.5
0.1.4
0.1.3
0.1.2
0.1.1
0.1.0
String validation and sanitization
github.com/chriso/validator.js
chriso/validator.js
validator
/
es
/
lib
/
isBtcAddress.js
7 lines
(6 loc)
•
218 B
JavaScript
View Raw
1
2
3
4
5
6
7
import
assertString
from
'./util/assertString'
;
// supports Bech32 addresses
var
btc =
/^(bc1|[13])[a-zA-HJ-NP-Z0-9]{25,39}$/
;
export
default
function
isBtcAddress
(
str
) {
assertString
(str);
return
btc.
test
(str); }