????

Your IP : 18.191.103.248


Current Path : C:/inetpub/vhost/invest.gdtsolutions.vn/api/node_modules/validator/es/lib/
Upload File :
Current File : C:/inetpub/vhost/invest.gdtsolutions.vn/api/node_modules/validator/es/lib/isEthereumAddress.js

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