Socket
Book a DemoInstallSign in
Socket

babel-plugin-es6-promise

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

babel-plugin-es6-promise

Babel plugin that rewrites Promise references to es6-promise, but only if necessary

latest
Source
npmnpm
Version
1.1.1
Version published
Weekly downloads
2.9K
-7.27%
Maintainers
1
Weekly downloads
 
Created
Source

babel-plugin-es6-promise

Babel plugin that rewrites Promise references to es6-promise, but only if necessary. Tested with Node.js 0.10 and above.

Installation

$ npm install --save-dev babel-plugin-es6-promise

Then add es6-promise to your Babel config, like:

{
  "plugins": ["es6-promise"]
}

es6-promise must be installed separately.

Behavior

This plugin rewrites files that reference the Promise built-in. It inserts the following code at the top of each file:

var _Promise = typeof Promise === 'undefined'
  ? require('es6-promise').Promise
  : Promise

This means es6-promise is only loaded when there is no Promise built-in available. Each Promise reference is rewritten to _Promise.

Note that require() is used rather than a ES2015 module import. This may make it difficult to do further import transforms.

Also note that the _Promise variable name in this example is determined by Babel and may differ depending on your code.

Keywords

babel-plugin

FAQs

Package last updated on 03 Feb 2017

Did you know?

Socket

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