Remove unnecessary parentheses from require('os').homedir()

This commit is contained in:
matoruru 2020-05-19 23:20:01 +09:00 committed by GitHub
parent e17e8b04a1
commit c41ad68e34
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) {