Merge pull request #194 from matoruru/patch-1

Remove unnecessary parentheses from require('os').homedir()
This commit is contained in:
Andrey Sidorov 2020-05-21 20:17:05 +10:00 committed by GitHub
commit 1db2cb54c3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -50,7 +50,7 @@ function parseXauth( buf )
return auth;
}
var homedir = require('os').homedir();
var homedir = require('os').homedir;
var path = require('path');
function readXauthority(cb) {