Looks like Cloud Functions does not support Async-Await notation. Is there a way I could use Babel until they do or is it recommended to use promises?
My current function that sits on Node is like so:
exports.getToken = async (req, res) => { //1. Generate token from Braintree const result = await gateway.clientToken.generate(); //2. Return the client token res.json(result.clientToken); };
1.4m articles
1.4m replys
5 comments
57.0k users