regenerator icon indicating copy to clipboard operation
regenerator copied to clipboard

Source transformer enabling ECMAScript 6 generator functions in JavaScript-of-today.

Results 84 regenerator issues
Sort by recently updated
recently updated
newest added

This change makes the generator prototype chain fully conformant with ~the spec~ the Iterator Helpers stage 3 proposal, and enables the following code to work when transpiled to older runtimes:...

CLA Signed

```js (async () => { let obj = {}; setTimeout(() => { console.log('timeout'); obj = {}; }, 1000); obj['a'] = await new Promise((resolve) => { setTimeout(() => { console.log('resolved'); resolve('a');...

Currently I'm using regenerator-runtime version 0.11.0, but can't find a LICENSE file in the repo of ver 0.11.0. Could you add the LICENSE file in the repo of ver 0.11.0?...

When I access the page in Chrome WebView using an Android device, I get an error: Cannot set property regeneratorRuntime of # which has only a getter This error comes...