babel-helper-remap-async-to-generator

WebJar for babel-helper-remap-async-to-generator

License

License

MIT
Categories

Categories

reMap General Purpose Libraries Bean Mapping
GroupId

GroupId

org.webjars.npm
ArtifactId

ArtifactId

babel-helper-remap-async-to-generator
Last Version

Last Version

7.0.0-beta.2
Release Date

Release Date

Type

Type

jar
Description

Description

babel-helper-remap-async-to-generator
WebJar for babel-helper-remap-async-to-generator
Project URL

Project URL

http://webjars.org
Source Code Management

Source Code Management

https://github.com/babel/babel

Download babel-helper-remap-async-to-generator

How to add to project

<!-- https://jarcasting.com/artifacts/org.webjars.npm/babel-helper-remap-async-to-generator/ -->
<dependency>
    <groupId>org.webjars.npm</groupId>
    <artifactId>babel-helper-remap-async-to-generator</artifactId>
    <version>7.0.0-beta.2</version>
</dependency>
// https://jarcasting.com/artifacts/org.webjars.npm/babel-helper-remap-async-to-generator/
implementation 'org.webjars.npm:babel-helper-remap-async-to-generator:7.0.0-beta.2'
// https://jarcasting.com/artifacts/org.webjars.npm/babel-helper-remap-async-to-generator/
implementation ("org.webjars.npm:babel-helper-remap-async-to-generator:7.0.0-beta.2")
'org.webjars.npm:babel-helper-remap-async-to-generator:jar:7.0.0-beta.2'
<dependency org="org.webjars.npm" name="babel-helper-remap-async-to-generator" rev="7.0.0-beta.2">
  <artifact name="babel-helper-remap-async-to-generator" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.webjars.npm', module='babel-helper-remap-async-to-generator', version='7.0.0-beta.2')
)
libraryDependencies += "org.webjars.npm" % "babel-helper-remap-async-to-generator" % "7.0.0-beta.2"
[org.webjars.npm/babel-helper-remap-async-to-generator "7.0.0-beta.2"]

Dependencies

compile (4)

Group / Artifact Type Version
org.webjars.npm : babel-helper-wrap-function jar [7.0.0-beta.2]
org.webjars.npm : babel-template jar [7.0.0-beta.2]
org.webjars.npm : babel-traverse jar [7.0.0-beta.2]
org.webjars.npm : babel-types jar [7.0.0-beta.2]

Project Modules

There are no modules declared in this project.

babel

The compiler for writing next generation JavaScript.

Gitpod ready-to-code

v7 npm Downloads v6 npm Downloads

CircleCI Status Coverage Status Slack Status Follow on Twitter

Supporting Babel

Backers on Open Collective Sponsors on Open Collective Business Strategy Status

Babel (pronounced "babble") is a community-driven project used by many companies and projects, and is maintained by a group of volunteers. If you'd like to help support the future of the project, please consider:

Sponsors

Our top sponsors are shown below! [Become a sponsor]

Intro

Babel is a tool that helps you write code in the latest version of JavaScript. When your supported environments don't support certain features natively, Babel will help you compile those features down to a supported version.

In

// ES2020 nullish coalescing
function greet(input) {
  return input ?? "Hello world";
}

Out

function greet(input) {
  return input != null ? input : "Hello world";
}

Try it out at our REPL.

FAQ

Who maintains Babel?

Mostly a handful of volunteers, funded by you! Please check out our team page!

Is there a Babel song?

I'm so glad you asked: Hallelujah —— In Praise of Babel by @angus-c, audio version by @swyx. Tweet us your recordings!

Looking for support?

For questions and support please join our Slack Community (you can sign up here for an invite), ask a question on Stack Overflow, or ping us on Twitter.

Where are the docs?

Check out our website: babeljs.io, and report issues/features at babel/website.

Want to report a bug or request a feature?

Please read through our CONTRIBUTING.md and fill out the issue template at babel/issues!

Want to contribute to Babel?

Check out:

Some resources:

How is the repo structured?

The Babel repo is managed as a monorepo that is composed of many npm packages.

License

MIT

org.webjars.npm

Babel

The community maintained compiler for next generation JavaScript, today.

Versions

Version
7.0.0-beta.2
6.24.1
6.3.13