mirror of
https://github.com/pezkuwichain/pezkuwi-common.git
synced 2026-04-22 10:17:57 +00:00
8 lines
182 B
JavaScript
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());
|
|
}
|