We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9a19c84 commit cdebbd7Copy full SHA for cdebbd7
1 file changed
lib/coverage.js
@@ -2,16 +2,16 @@ var path = require('path'),
2
_ = require('underscore');
3
4
var istanbul,
5
- collector,
6
- coveragePath;
+ collector,
+ coveragePath;
7
8
try {
9
istanbul = require('istanbul');
10
} catch (e) {}
11
12
exports.setup = function(path) {
13
collector = new istanbul.Collector();
14
- coveragePath = typeof path === 'string' ? path : 'coverage';
+ coveragePath = typeof path === 'string' ? path : 'coverage';
15
};
16
17
exports.add = function(coverage) {
0 commit comments