UNPKG

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