Skip to content

Babel plugin that rewrites Array.find references to core-js#Array.find, but only if necessary

License

Notifications You must be signed in to change notification settings

remy/babel-plugin-array-find

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.

About

Babel plugin that rewrites Array.find references to core-js#Array.find, but only if necessary

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 100.0%