fs-equals
v0.2.6
Published
test pieces of the file system for equality
Downloads
12
Readme
fs-equals
test pieces of the file system for equality
Getting Started
With npm
$ npm install fs-equals --save
then in your app:
var fs-equals = require('fs-equals')
API
equals(apath:String, bpath:String)
compare whatever happens to be at either path. The result is returned via a promise
dirs(apath:String, bpath:String)
test the contents of two directories for equality
files(apath:String, bpath:String)
test the contents of two files for equality
examples
see the tests
Running the tests
$ npm install
$ make test
Note: these commands don't work on windows.