Skip to content
This repository was archived by the owner on Oct 15, 2020. It is now read-only.

Commit 080e431

Browse files
committed
lib: fix lint issues
PR-URL: #473 Reviewed-By: Jack Horton <Jack.Horton@microsoft.com> Reviewed-By: Seth Brenith <sethb@microsoft.com>
1 parent 0aa918f commit 080e431

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

lib/internal/process.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ function setupKillAndExit() {
182182
};
183183
}
184184

185-
var ttdSigIntHandler = undefined;
185+
var ttdSigIntHandler;
186186
function setupSignalHandlers() {
187187
const signalWraps = Object.create(null);
188188
let Signal;

lib/trace_mgr.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ var reentrantDisable = true;
77
var process = require('process');
88

99
var lazyloadDone = false;
10-
var path = undefined;
11-
var fs = undefined;
10+
var path;
11+
var fs;
1212

1313
///////////////////////////////
1414
//Trace calls

0 commit comments

Comments
 (0)