Created
April 22, 2014 03:32
-
-
Save mashihua/11164542 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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