Skip to content

Commit 329f784

Browse files
author
James Halliday
committed
clean up feature detection
1 parent 6fc71ba commit 329f784

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

index.js

+1-5
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,13 @@ exports = module.exports = createHarness();
66
exports.createHarness = createHarness;
77
exports.Test = Test;
88

9-
var canEmitExit = false;
10-
var canExit = false;
11-
//*
129
var canEmitExit = typeof process !== 'undefined' && process
1310
&& typeof process.on === 'function'
1411
;
1512
var canExit = typeof process !== 'undefined' && process
1613
&& typeof process.exit === 'function'
1714
;
18-
//*/
19-
15+
2016
function createHarness () {
2117
var pending = [];
2218
var running = false;

0 commit comments

Comments
 (0)