Locaft-backend/auth/node_modules/validator/es/lib/isEthereumAddress.js

6 lines
176 B
JavaScript
Raw Normal View History

2020-11-08 09:28:21 -08:00
import assertString from './util/assertString';
var eth = /^(0x)[0-9a-f]{40}$/i;
export default function isEthereumAddress(str) {
assertString(str);
return eth.test(str);
}