Skip to content

Instantly share code, notes, and snippets.

@cicorias
Forked from marten-de-vries/pouchdb-promisify.js
Created February 29, 2016 19:47
Show Gist options
  • Save cicorias/34fef612694acaad8891 to your computer and use it in GitHub Desktop.
Save cicorias/34fef612694acaad8891 to your computer and use it in GitHub Desktop.
var wrappers = require("pouchdb-wrappers");
var noops = {};
// also add all the other methods
"get allDocs getAttachment info revsDiff put post".split(" ")).forEach(function (name) {
noops[name] = function (orig) {return orig(); };
});
wrappers.installWrapperMethods(db, noops);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment