UNPKG

@polkadot/util

Version:
12 lines (11 loc) 317 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.isTestChain = void 0; const REGEX_DEV = /(Development|Local Testnet)$/; function isTestChain(chain) { if (!chain) { return false; } return !!REGEX_DEV.test(chain.toString()); } exports.isTestChain = isTestChain;