Skip to content

Instantly share code, notes, and snippets.

@mashihua
Created April 22, 2014 03:32
Show Gist options
  • Save mashihua/11164542 to your computer and use it in GitHub Desktop.
Save mashihua/11164542 to your computer and use it in GitHub Desktop.
var thunkify = require('thunkify')
module.exports = function(model){
var methods = ['save',
'create',
'find',
'findById',
'remove',
'aggregate',
'count',
'distinct',
'findByIdAndRemove',
'findByIdAndUpdate',
'findOne',
'findOneAndRemove',
'findOneAndUpdate',
'geoNear',
'geoSearch',
'mapReduce',
'populate',
'update'];
for(var i = 0, len = methods.length; i < len; i++){
var m = methods[i]
var method = model[m]
if(method){
model[m] = thunkify(model[m].bind(model))
}
}
return model;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment