UNPKG

@skhemata/skhemata-form

Version:

Skhemata Form Web Component. This web component can be used as base web component when working with forms and inputs.

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