regenerator icon indicating copy to clipboard operation
regenerator copied to clipboard

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

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

Good afternoon, When will v0.14.2 tag be released?

Bumps [@babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core) from 7.22.10 to 7.24.0. Release notes Sourced from @​babel/core's releases. v7.24.0 (2024-02-28) Thanks @​ajihyf for your first PR! Release post with summary and highlights: https://babeljs.io/7.24.0 :rocket: New Feature...

CLA Signed
dependencies

`runtime.js` currently caches the values of `Symbol.iterator`, `Symbol.asyncIterator` and `Symbol.toStringTag` when it is loaded ([here](https://github.com/facebook/regenerator/blob/055b4030219f7cc0af5999ef4431c991697d7ee5/packages/runtime/runtime.js#L14-L17)). This can cause issues when `regenerator-runtime` is loaded *before* the `Symbol` polyfills. [Here](https://babeljs.io/repl/#?browsers=ie%20%3E%3D%2011&build=&builtIns=usage&corejs=3.21&spec=true&loose=true&code_lz=GYVwdgxgLglg9mAVAAgKZhAW1QJwIZSoAUMUAlMgN4BQyyAnjKgDYAmKp1AvtdRAgGcoyCCCFxMASUL4ARs1TIAvFVrIA2gGV6mWXGYA6UrgJwcAXSIUadOguEA3PMxCKVABjUBIHKiggcMFVbWzBUAA8oK2CQ219_QKpkJxdUABpkVgRUAC5kAGp8lNdkAD5kACZkHljqtToaup5qYDNkIn4wIWRjTGQ4YBExKAlpE3lUazVOgX1UA2Y4AHMSQkwyAG5uaiA&debug=false&forceAllTransforms=false&shippedProposals=false&circleciRepo=&evaluate=false&fileSize=false&timeTravel=false&sourceType=script&lineWrap=false&presets=env&prettier=false&targets=&version=7.17.11&externalPlugins=&assumptions=%7B%7D) is an...

Bumps [@babel/types](https://github.com/babel/babel/tree/HEAD/packages/babel-types) from 7.23.0 to 7.24.0. Release notes Sourced from @​babel/types's releases. v7.24.0 (2024-02-28) Thanks @​ajihyf for your first PR! Release post with summary and highlights: https://babeljs.io/7.24.0 :rocket: New Feature...

CLA Signed
dependencies

Bumps [@babel/runtime](https://github.com/babel/babel/tree/HEAD/packages/babel-runtime) from 7.23.2 to 7.24.0. Release notes Sourced from @​babel/runtime's releases. v7.24.0 (2024-02-28) Thanks @​ajihyf for your first PR! Release post with summary and highlights: https://babeljs.io/7.24.0 :rocket: New Feature...

CLA Signed
dependencies

Bumps [@babel/plugin-transform-parameters](https://github.com/babel/babel/tree/HEAD/packages/babel-plugin-transform-parameters) from 7.22.5 to 7.23.3. Release notes Sourced from @​babel/plugin-transform-parameters's releases. v7.23.3 (2023-11-09) :bug: Bug Fix babel-plugin-transform-typescript #16071 Strip type-only TS namespaces (@​colinaaa) babel-generator #16078 Fix indentation when generating...

CLA Signed
dependencies

Bumps [@babel/plugin-transform-modules-commonjs](https://github.com/babel/babel/tree/HEAD/packages/babel-plugin-transform-modules-commonjs) from 7.19.6 to 7.23.3. Release notes Sourced from @​babel/plugin-transform-modules-commonjs's releases. v7.23.3 (2023-11-09) :bug: Bug Fix babel-plugin-transform-typescript #16071 Strip type-only TS namespaces (@​colinaaa) babel-generator #16078 Fix indentation when generating...

CLA Signed
dependencies

Hi @benjamn :) Old versions of `regenerator-runtime` (when used together with another library) are making it impossible to ship the new iterator helpers proposal (https://github.com/tc39/proposal-iterator-helpers/issues/286). Would it be possible to...

Hello, I have a question: Is regenerator a good starting point to compile a coroutine into a pure function akin to `next : (State x Value) -> (State x Value)`...

Some Javascript runtime like Wechat MiniProgram and Alipay MiniProgram forbids dynamically defining function [(related documents)](https://developers.weixin.qq.com/miniprogram/dev/framework/runtime/js-support.html), where both `Function` and `eval` are `undefined`. Recently added [detection for `accidentalStrictMode`](https://github.com/facebook/regenerator/blob/master/packages/regenerator-runtime/runtime.js#L713) used `Function` as...