PHP WebShell

Текущая директория: /opt/BitGoJS/node_modules/@polkadot/util/cjs/is

Просмотр файла: testChain.js

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.isTestChain = isTestChain;
const REGEX_DEV = /(Development|Local Testnet)$/;
function isTestChain(chain) {
    if (!chain) {
        return false;
    }
    return !!REGEX_DEV.test(chain.toString());
}

Выполнить команду


Для локальной разработки. Не используйте в интернете!