gitextract_5blrnppl/ ├── .gitignore ├── .jshintrc ├── .npmignore ├── .travis.yml ├── LICENSE ├── README.md ├── bin/ │ ├── dev-server.js │ ├── es3ify.js │ ├── run-test.sh │ ├── test-browser.js │ └── test-node.sh ├── client/ │ └── index.js ├── dist/ │ └── socket-pouch.client.js ├── lib/ │ ├── client/ │ │ ├── arrayBufferToBinaryString.js │ │ ├── base64.js │ │ ├── base64StringToBlobOrBuffer-browser.js │ │ ├── base64StringToBlobOrBuffer.js │ │ ├── binaryStringToArrayBuffer.js │ │ ├── binaryStringToBlobOrBuffer-browser.js │ │ ├── binaryStringToBlobOrBuffer.js │ │ ├── blob.js │ │ ├── index.js │ │ ├── readAsArrayBuffer.js │ │ ├── readAsBinaryString-browser.js │ │ ├── readAsBinaryString.js │ │ ├── typedBuffer.js │ │ └── utils.js │ ├── server/ │ │ ├── index.js │ │ ├── make-pouch-creator.js │ │ ├── safe-eval.js │ │ └── utils.js │ └── shared/ │ ├── buffer-browser.js │ ├── buffer.js │ ├── cloneBinaryObject-browser.js │ ├── cloneBinaryObject.js │ ├── errors.js │ ├── isBinaryObject-browser.js │ ├── isBinaryObject.js │ ├── parse-message.js │ ├── pouchdb-clone.js │ ├── utils.js │ └── uuid.js ├── package.json ├── server/ │ └── index.js └── test/ ├── bind-polyfill.js ├── deps/ │ └── bigimage.js ├── index.html ├── node.setup.js ├── pouchdb/ │ ├── integration/ │ │ ├── deps/ │ │ │ └── bigimage.js │ │ ├── pouchdb-for-coverage.js │ │ ├── test.aa.setup.js │ │ ├── test.all_docs.js │ │ ├── test.attachments.js │ │ ├── test.basics.js │ │ ├── test.bulk_docs.js │ │ ├── test.bulk_get.js │ │ ├── test.changes.js │ │ ├── test.compaction.js │ │ ├── test.conflicts.js │ │ ├── test.constructor.js │ │ ├── test.design_docs.js │ │ ├── test.events.js │ │ ├── test.get.js │ │ ├── test.http.js │ │ ├── test.issue1175.js │ │ ├── test.issue221.js │ │ ├── test.issue3179.js │ │ ├── test.issue3646.js │ │ ├── test.local_docs.js │ │ ├── test.replication.js │ │ ├── test.replication_events.js │ │ ├── test.reserved.js │ │ ├── test.retry.js │ │ ├── test.revs_diff.js │ │ ├── test.slash_id.js │ │ ├── test.sync.js │ │ ├── test.sync_events.js │ │ ├── test.taskqueue.js │ │ ├── test.uuids.js │ │ ├── utils-bundle.js │ │ └── utils.js │ └── mapreduce/ │ ├── test.mapreduce.js │ ├── test.persisted.js │ └── test.views.js ├── test.js └── webrunner.js