UNPKG

272 BJavaScriptView Raw
1// Copyright 2017-2022 @polkadot/util authors & contributors
2// SPDX-License-Identifier: Apache-2.0
3const REGEX_DEV = /(Development|Local Testnet)$/;
4export function isTestChain(chain) {
5 if (!chain) {
6 return false;
7 }
8
9 return !!REGEX_DEV.test(chain.toString());
10}
\No newline at end of file