1 | ;
|
2 | Object.defineProperty(exports, "__esModule", { value: true });
|
3 | exports.isTestChain = void 0;
|
4 | const REGEX_DEV = /(Development|Local Testnet)$/;
|
5 | function isTestChain(chain) {
|
6 | if (!chain) {
|
7 | return false;
|
8 | }
|
9 | return !!REGEX_DEV.test(chain.toString());
|
10 | }
|
11 | exports.isTestChain = isTestChain;
|