This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains any messages produced by compilers while | |
running configure, to aid debugging if configure makes a mistake. | |
It was created by glib configure 2.28.7, which was | |
generated by GNU Autoconf 2.68. Invocation command line was | |
$ ./configure --disable-dependency-tracking --disable-rebuilds --prefix=/usr/local/Cellar/glib/2.28.7 --with-libiconv=gnu --disable-debug | |
## --------- ## | |
## Platform. ## |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git i/lib/fs.js w/lib/fs.js | |
index d094462..ed21d56 100644 | |
--- i/lib/fs.js | |
+++ w/lib/fs.js | |
@@ -401,6 +401,14 @@ fs.chownSync = function(path, uid, gid) { | |
return binding.chown(path, uid, gid); | |
}; | |
+fs.access = function(path, amode, callback) { | |
+ binding.access(path, amode, callback || noop); |
NewerOlder