swc/crates/swc_bundler/tests/.cache/deno/00ac2e3568aa701b50dbe03658b1969f4fa89905.ts
2021-11-09 20:42:49 +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);
};