UNPKG

heroku-cli-util

Version:
15 lines (14 loc) 273 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()