ampersand/lib/quit.js

Maintainability

71.33

Lines of code

7

Created with Raphaël 2.1.002550751002015-1-52014-12-42014-12-3

2015-5-18
Maintainability: 71.33

Created with Raphaël 2.1.0024682015-1-52014-12-42014-12-3

2015-5-18
Lines of Code: 7

Difficulty

6.58

Estimated Errors

0.05

Function weight

By Complexity

Created with Raphaël 2.1.0module.exports4

By SLOC

Created with Raphaël 2.1.0module.exports7
1
// prints message and kills the process
2
module.exports = function (message, exitCode) {
3
    if (typeof exitCode === 'undefined') {
4
        exitCode = 1;
5
    }
6
    if (message) console.log('\n' + message + '\n');
7
    process.exit(exitCode || 0);
8
};