diff --git a/doc/api/path.markdown b/doc/api/path.markdown index 36544f6c17..adef4b39ed 100644 --- a/doc/api/path.markdown +++ b/doc/api/path.markdown @@ -112,3 +112,8 @@ with either true or false. Example: path.exists('/etc/passwd', function (exists) { util.debug(exists ? "it's there" : "no passwd!"); }); + + +### path.existsSync(p) + +Synchronous version of `path.exists`.