mirror of
https://github.com/pezkuwichain/pezkuwi-ui.git
synced 2026-04-30 11:58:00 +00:00
Add ui-util formatting & util (#76)
* Add ui-util formatting & util * Update README
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
// 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());
|
||||
}
|
||||
Reference in New Issue
Block a user