debug.js 327 B

123456
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. exports.debugLog = exports.QTS_DEBUG = void 0;
  4. exports.QTS_DEBUG = false || Boolean(typeof process === "object" && process.env.QTS_DEBUG);
  5. exports.debugLog = exports.QTS_DEBUG ? console.log.bind(console) : () => { };
  6. //# sourceMappingURL=debug.js.map