UNPKG

heroku-cli-util

Version:
15 lines (14 loc) 279 B
function Process() { this.env = process.env; } Process.prototype.mock = function () { this.mocking = true; }; Process.prototype.exit = function (code) { if (this.mocking) { this.exitCode = code; } else { process.exit(code); } }; module.exports = new Process();