config.js 309 B

12345678910
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. exports.setConfig = exports.config = void 0;
  4. exports.config = {
  5. onError: function (e) { return console.error(e); },
  6. };
  7. var setConfig = function (conf) {
  8. Object.assign(exports.config, conf);
  9. };
  10. exports.setConfig = setConfig;