vlad 6f123ff03e 18.07 | il y a 6 ans | |
---|---|---|
.. | ||
lib | il y a 6 ans | |
src | il y a 6 ans | |
.npmignore | il y a 6 ans | |
README.md | il y a 6 ans | |
package.json | il y a 6 ans |
Transform async/generator functions with regenerator
$ npm install regenerator-transform
.babelrc
(Recommended).babelrc
// without options
{
"plugins": ["regenerator-transform"]
}
// with options
{
"plugins": [
["regenerator-transform", {
asyncGenerators: false, // true by default
generators: false, // true by default
async: false // true by default
}]
]
}
$ babel --plugins regenerator-transform script.js
require("babel-core").transform("code", {
plugins: ["regenerator-transform"]
});