Skip to content

Instantly share code, notes, and snippets.

@zontafil
Created November 1, 2015 15:57
Show Gist options
  • Save zontafil/ad03e4d8544efdbff0df to your computer and use it in GitHub Desktop.
Save zontafil/ad03e4d8544efdbff0df to your computer and use it in GitHub Desktop.
var Promise = require("bluebird");
function promisifyWaterline(action){
return new Promise(function(resolve,reject){
action
.then(resolve)
.catch(function(err){
throw new Error("lol");
})
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment