lib/util/exit.js

Maintainability

80.32

Lines of code

17

Created with Raphaël 2.1.002550751002013-2-252013-1-262012-12-272012-11-272012-10-282012-9-282012-8-292013-3-27Maintainability: 80.32

Created with Raphaël 2.1.004913172013-2-252013-1-262012-12-272012-11-272012-10-282012-9-282012-8-292013-3-27Lines of Code: 17

Difficulty

6.65

Estimated Errors

0.05

Function weight

By Complexity

Created with Raphaël 2.1.0exit3

By SLOC

Created with Raphaël 2.1.0exit9
1
/*
2
 * grunt
3
 * http://gruntjs.com/
4
 *
5
 * Copyright (c) 2013 "Cowboy" Ben Alman
6
 * Licensed under the MIT license.
7
 * https://github.com/gruntjs/grunt/blob/master/LICENSE-MIT
8
 */
9
 
10
'use strict';
Column: 1 "Use the function form of "use strict"."
11
 
12
// This seems to be required in Windows (as of Node.js 0.8.7) to ensure that
13
// stdout/stderr are flushed before the process exits.
14
 
15
// https://gist.github.com/3427148
16
// https://gist.github.com/3427357
17
 
18
exports.exit = function exit(exitCode) {
Column: 1 "'exports' is not defined."
19
  if (process.stdout._pendingWriteReqs || process.stderr._pendingWriteReqs) {
Column: 7 "'process' is not defined."
Column: 43 "'process' is not defined."
20
    process.nextTick(function() {
Column: 5 "'process' is not defined."
21
      exit(exitCode);
22
    });
23
  } else {
24
    process.exit(exitCode);
Column: 5 "'process' is not defined."
25
  }
26
};