deepsea ca9f471156 first commit 1 ano atrás
..
lib ca9f471156 first commit 1 ano atrás
src ca9f471156 first commit 1 ano atrás
LICENSE ca9f471156 first commit 1 ano atrás
README.md ca9f471156 first commit 1 ano atrás
package.json ca9f471156 first commit 1 ano atrás

README.md

regenerator-transform

Transform async/generator functions with regenerator

Installation

$ npm install regenerator-transform

Usage

Via .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
    }]
  ]
}

Via CLI

$ babel --plugins regenerator-transform script.js

Via Node API

require("@babel/core").transformSync("code", {
  plugins: ["regenerator-transform"]
});