swc/bundler/tests/.cache/deno/00ac2e3568aa701b50dbe03658b1969f4fa89905.ts
강동윤 bbaf619f63
fix(bundler): Fix bugs (#1437)
swc_bundler:
 - [x] Fix wrapped esms. (denoland/deno#9307)
 - [x] Make test secure.
2021-03-02 17:33:03 +09:00

17 lines
378 B
TypeScript

// Loaded from https://deno.land/x/segno@v1.1.0/lib/validations/isBtcAddress.ts
// @ts-ignore allowing typedoc to build
import { assertString } from '../helpers/assertString.ts';
// supports Bech32 addresses
/**
* @ignore
*/
const btc = /^(bc1|[13])[a-zA-HJ-NP-Z0-9]{25,39}$/;
export const isBtcAddress = (str: string) => {
assertString(str);
return btc.test(str);
};