Socket
Socket
Sign inDemoInstall

babel-preset-stage-1-without-async

Package Overview
Dependencies
56
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    babel-preset-stage-1-without-async

Use stage-1 Babel features without `transform-async-generator-functions`


Version published
Maintainers
1
Created

Readme

Source

babel-preset-stage-1-without-async

Use stage-1 Babel features without transform-async-generator-functions.

There's no need to transform async to generator-functions on Node.js >= v7.6.

Installation

Installation requires installing a peer dependence.

yarn add -D babel-preset-stage-1 babel-preset-stage-1-without-async

Usage

.babelrc

{
  "presets": ["stage-1-without-async"]
}

Via CLI

babel script.js --presets stage-1-without-async

Via Node API

require('babel-core').transform('code', {
  presets: ['stage-1-without-async']
});

License

MIT © Cap32

Keywords

FAQs

Last updated on 28 Apr 2017

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc