
Research
/Security News
Weaponizing Discord for Command and Control Across npm, PyPI, and RubyGems.org
Socket researchers uncover how threat actors weaponize Discord across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.
babel-plugin-transform-regenerator
Advanced tools
Explode async and generator functions into a state machine.
Transform async/generator functions with regenerator
In
function* a() {
yield 1;
}
Out
var _marked = [a].map(regeneratorRuntime.mark);
function a() {
return regeneratorRuntime.wrap(function a$(_context) {
while (1) {
switch (_context.prev = _context.next) {
case 0:
_context.next = 2;
return 1;
case 2:
case "end":
return _context.stop();
}
}
}, _marked[0], this);
}
npm install --save-dev babel-plugin-transform-regenerator
.babelrc
(Recommended)Without options:
{
"plugins": ["transform-regenerator"]
}
With options:
name | default value |
---|---|
asyncGenerators | true |
generators | true |
async | true |
{
"plugins": [
["transform-regenerator", {
"asyncGenerators": false,
"generators": false,
"async": false
}]
]
}
babel --plugins transform-regenerator script.js
require("babel-core").transform("code", {
plugins: ["transform-regenerator"]
});
This package transforms async functions into generator functions, similar to how babel-plugin-transform-regenerator handles async/await syntax. However, it is specifically focused on the async/await syntax rather than on generator functions in general.
While not a Babel plugin, regenerator-runtime is often used in conjunction with babel-plugin-transform-regenerator to provide a runtime environment for the transformed generator functions. It includes a polyfill for the regenerator runtime, which is necessary for the transpiled generator functions to work.
FAQs
Explode async and generator functions into a state machine.
The npm package babel-plugin-transform-regenerator receives a total of 1,517,540 weekly downloads. As such, babel-plugin-transform-regenerator popularity was classified as popular.
We found that babel-plugin-transform-regenerator demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 5 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
/Security News
Socket researchers uncover how threat actors weaponize Discord across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.
Security News
Socket now integrates with Bun 1.3’s Security Scanner API to block risky packages at install time and enforce your organization’s policies in local dev and CI.
Research
The Socket Threat Research Team is tracking weekly intrusions into the npm registry that follow a repeatable adversarial playbook used by North Korean state-sponsored actors.