When I use _wrapAsync
like so:
var stripeChargeCreate = Meteor._wrapAsync(_.bind(Stripe.charges.create,Stripe));
var charge = stripeChargeCreate({
amount: amount,
currency: "usd",
card: token,
description: description
});
I get the following error: Object # has no method 'createUrlData'
What am I missing?