regex.ts 279 B

1234567
  1. // Copyright 2017-2019 @polkadot/app-accounts authors & contributors
  2. // This software may be modified and distributed under the terms
  3. // of the Apache-2.0 license. See the LICENSE file for details.
  4. const regex = new RegExp('^[1-9A-HJ-NP-Za-km-z]*$', '');
  5. export default regex;