es7-async-await icon indicating copy to clipboard operation
es7-async-await copied to clipboard

Transformer that converts async functions and await expressions into ECMAScript 6 generator functions and yield expressions

Results 1 es7-async-await issues
Sort by recently updated
recently updated
newest added

After installation in MeteorJs project as per slide: http://benjamn.github.io/goto2015-talk/#/26/6 $ meteor npm install es7-async-await and in /lib/collections.js: ``` users = new Mongo.Collection('users'); ``` and in server/main.js: ``` import {Meteor} from...