├── .gitignore ├── .npmignore ├── .travis.yml ├── README.md ├── lib ├── core.js ├── directory_entry.js ├── fs.js └── global.js ├── package.json └── test ├── global.html ├── index.html ├── picture.jpg ├── test.dir.js ├── test.js ├── test.read.js ├── test.remove.js └── test.write.js /.gitignore: -------------------------------------------------------------------------------- 1 | components 2 | build 3 | node_modules/ 4 | dist/ 5 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | test/ 2 | build.js 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewp/fs/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewp/fs/HEAD/README.md -------------------------------------------------------------------------------- /lib/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewp/fs/HEAD/lib/core.js -------------------------------------------------------------------------------- /lib/directory_entry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewp/fs/HEAD/lib/directory_entry.js -------------------------------------------------------------------------------- /lib/fs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewp/fs/HEAD/lib/fs.js -------------------------------------------------------------------------------- /lib/global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewp/fs/HEAD/lib/global.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewp/fs/HEAD/package.json -------------------------------------------------------------------------------- /test/global.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewp/fs/HEAD/test/global.html -------------------------------------------------------------------------------- /test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewp/fs/HEAD/test/index.html -------------------------------------------------------------------------------- /test/picture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewp/fs/HEAD/test/picture.jpg -------------------------------------------------------------------------------- /test/test.dir.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewp/fs/HEAD/test/test.dir.js -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewp/fs/HEAD/test/test.js -------------------------------------------------------------------------------- /test/test.read.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewp/fs/HEAD/test/test.read.js -------------------------------------------------------------------------------- /test/test.remove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewp/fs/HEAD/test/test.remove.js -------------------------------------------------------------------------------- /test/test.write.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewp/fs/HEAD/test/test.write.js --------------------------------------------------------------------------------