├── .gitignore ├── .jshintrc ├── .travis.yml ├── LICENSE ├── README.md ├── bin └── run-test.sh ├── bower.json ├── dist ├── pouchdb.upsert.js └── pouchdb.upsert.min.js ├── index.js ├── package.json └── test ├── bind-polyfill.js ├── index.html ├── test.js └── webrunner.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouchdb/upsert/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouchdb/upsert/HEAD/.jshintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouchdb/upsert/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouchdb/upsert/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouchdb/upsert/HEAD/README.md -------------------------------------------------------------------------------- /bin/run-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouchdb/upsert/HEAD/bin/run-test.sh -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouchdb/upsert/HEAD/bower.json -------------------------------------------------------------------------------- /dist/pouchdb.upsert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouchdb/upsert/HEAD/dist/pouchdb.upsert.js -------------------------------------------------------------------------------- /dist/pouchdb.upsert.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouchdb/upsert/HEAD/dist/pouchdb.upsert.min.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouchdb/upsert/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouchdb/upsert/HEAD/package.json -------------------------------------------------------------------------------- /test/bind-polyfill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouchdb/upsert/HEAD/test/bind-polyfill.js -------------------------------------------------------------------------------- /test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouchdb/upsert/HEAD/test/index.html -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouchdb/upsert/HEAD/test/test.js -------------------------------------------------------------------------------- /test/webrunner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouchdb/upsert/HEAD/test/webrunner.js --------------------------------------------------------------------------------