summaryrefslogtreecommitdiff
path: root/src/node_modules/validator/es/lib/isEthereumAddress.js
blob: 9c70f64c15517324e831a2b0d6fd144cc000d019 (plain)
1
2
3
4
5
6
import assertString from './util/assertString';
var eth = /^(0x)[0-9a-f]{40}$/i;
export default function isEthereumAddress(str) {
  assertString(str);
  return eth.test(str);
}