├── .gitignore ├── LICENSE.md ├── README.md ├── bower.json ├── dist └── CordovaPromiseFS.js ├── index.js ├── package.json └── test ├── index.html ├── promiscuous.js ├── qunit-1.15.0.css ├── qunit-1.15.0.js └── tests.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmarijnissen/cordova-promise-fs/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmarijnissen/cordova-promise-fs/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmarijnissen/cordova-promise-fs/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmarijnissen/cordova-promise-fs/HEAD/bower.json -------------------------------------------------------------------------------- /dist/CordovaPromiseFS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmarijnissen/cordova-promise-fs/HEAD/dist/CordovaPromiseFS.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmarijnissen/cordova-promise-fs/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmarijnissen/cordova-promise-fs/HEAD/package.json -------------------------------------------------------------------------------- /test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmarijnissen/cordova-promise-fs/HEAD/test/index.html -------------------------------------------------------------------------------- /test/promiscuous.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmarijnissen/cordova-promise-fs/HEAD/test/promiscuous.js -------------------------------------------------------------------------------- /test/qunit-1.15.0.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmarijnissen/cordova-promise-fs/HEAD/test/qunit-1.15.0.css -------------------------------------------------------------------------------- /test/qunit-1.15.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmarijnissen/cordova-promise-fs/HEAD/test/qunit-1.15.0.js -------------------------------------------------------------------------------- /test/tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markmarijnissen/cordova-promise-fs/HEAD/test/tests.js --------------------------------------------------------------------------------