Files
pezkuwi-common/packages/util/is/testChain.js
T

8 lines
182 B
JavaScript

const REGEX_DEV = /(Development|Local Testnet)$/;
export function isTestChain(chain) {
if (!chain) {
return false;
}
return !!REGEX_DEV.test(chain.toString());
}