mpromise
                                
                                 mpromise copied to clipboard
                                
                                    mpromise copied to clipboard
                            
                            
                            
                        feature request: add #catch()
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise/catch
:+1:
+1
+1
+1
:+1:
+1
+1
+1, would you accept a PR for this?
For anyone still running into this issue, here's a related issue and workaround.
Basically you can just add catch to Mpromise directly when you initialize your db connection:
var mpromise = require('mongoose/node_modules/mpromise');
mpromise.prototype.catch = function(onReject) {
  return this.then(undefined, onReject);
};
Hello all,
For now we have .end()