0.1.1 • Published 11 years ago

fs-exists v0.1.1

Weekly downloads
79
License
-
Repository
github
Last release
11 years ago

fs-exists

Wraps native fs.exists so callback is called with (err, result) instead of just (result).
Since it's just wrapping fs.exists, the err argument will always be null.

Usage

fsExists = require('fs-exists')
fsExists(path, function(err, result) {
  if (err) throw err; // err will always be null
  if(result)
    console.log "the entry exists"
  else
    console.log "the entry does not exist"
})

License

fs-exists is released under the MIT License.
Copyright (c) 2013 Meryn Stol

0.1.1

11 years ago

0.1.0

11 years ago

0.0.1

11 years ago