Files
pezkuwi-ui/packages/ui-util/src/isTestChain.ts
T
Jaco Greeff 9ce16e99bc Add ui-util formatting & util (#76)
* Add ui-util formatting & util

* Update README
2019-02-18 11:02:42 +01:00

14 lines
401 B
TypeScript

// Copyright 2017-2019 @polkadot/ui-util authors & contributors
// This software may be modified and distributed under the terms
// of the Apache-2.0 license. See the LICENSE file for details.
const re = new RegExp('^(Development|Local Testnet)$');
export default function isTestChain (chain?: string | null): boolean {
if (!chain) {
return false;
}
return !!re.test(chain.toString());
}