|
|
||||
|---|---|---|---|---|
| .. | ||||
| lib | 11e3a9652a | лет %!s(int64=7): %!d(string=назад) | ||
| src | 11e3a9652a | лет %!s(int64=7): %!d(string=назад) | ||
| .npmignore | 11e3a9652a | лет %!s(int64=7): %!d(string=назад) | ||
| README.md | 11e3a9652a | лет %!s(int64=7): %!d(string=назад) | ||
| package.json | 11e3a9652a | лет %!s(int64=7): %!d(string=назад) | ||
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"]
});