Closed tschaub closed 8 years ago
This adds binding.realpath() and adapts binding.readlink() and binding.readdir() so they can work with and without an encoding argument.
binding.realpath()
binding.readlink()
binding.readdir()
encoding
It also makes it so we rely on require('constants') instead of process.binding('constants').
require('constants')
process.binding('constants')
Fixes #137.
This adds
binding.realpath()
and adaptsbinding.readlink()
andbinding.readdir()
so they can work with and without anencoding
argument.It also makes it so we rely on
require('constants')
instead ofprocess.binding('constants')
.Fixes #137.