Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
Fixes lint errors introduced in 120e5a2
  • Loading branch information
isaacs committed Mar 28, 2013
1 parent 97c70a6 commit 9100dd4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/os.js
Expand Up @@ -46,14 +46,14 @@ exports.tmpdir = function() {
if (isWindows) {
return process.env.TEMP ||
process.env.TMP ||
(process.env.SystemRoot || process.env.windir) + "\\temp";
(process.env.SystemRoot || process.env.windir) + '\\temp';
} else {
return process.env.TMPDIR ||
process.env.TMP ||
process.env.TEMP ||
'/tmp';
}
}
};

exports.tmpDir = exports.tmpdir;

Expand Down

0 comments on commit 9100dd4

Please sign in to comment.