In the example for creating symlinks in the README, one would expect that fs.existsSync("/some/dir/a-symlink") returns true, but it actually returns false, because exists expects absolute symlink paths. It probably needs a path.resolve, like the open implementation.
In the example for creating symlinks in the README, one would expect that
fs.existsSync("/some/dir/a-symlink")returns true, but it actually returns false, because exists expects absolute symlink paths. It probably needs apath.resolve, like theopenimplementation.