m3l7
11/1/2015 - 3:57 PM

gistfile1.txt

var Promise = require("bluebird");

function promisifyWaterline(action){
	return new Promise(function(resolve,reject){
		action
		.then(resolve)
		.catch(function(err){
			throw new Error("lol");
		})
	})
}