bulk-mail-cli
Version:
Do quick, hassle-free email marketing with this small but very powerful tool! 🔥
13 lines • 370 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
function debug(anything, shouldEnd) {
if (shouldEnd === void 0) { shouldEnd = false; }
var shouldDebug = true;
if (shouldDebug) {
console.log(anything);
if (shouldEnd)
process.exit();
}
}
exports.default = debug;
//# sourceMappingURL=debugger.js.map