Files
babel/packages/babel-plugin-transform-async-to-generator/test/fixtures/regression/4599/expected.js
Henry Zhu 0f823beeb1 Newlines in fixtures (#6044)
* write newlines for fixtures

* rerun fixtures
2017-08-02 15:35:29 -04:00

7 lines
139 B
JavaScript

babelHelpers.asyncToGenerator(function* () {
return yield promise;
});
babelHelpers.asyncToGenerator(function* () {
yield promise;
});