PHP WebShell

Текущая директория: /opt/BitGoJS/modules/bitgo/test/browser

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

// intercept & mock all the redudant calls to fetch constants by the browser
(function (global) {
  const constants = {};
  BitGoJS.BitGo.prototype.getConstants = (params) => constants;
  BitGoJS.BitGo.prototype.fetchConstants = (params, callback) =>
    new Promise((resolve) => {
      resolve({
        ...constants,
      });
    });
})(window);

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


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