Socket
Socket
Sign inDemoInstall

babel-plugin-transform-export-default

Package Overview
Dependencies
1
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    babel-plugin-transform-export-default

Compile export default to ES2015


Version published
Maintainers
1
Install size
5.71 kB
Created

Readme

Source

babel-plugin-transform-export-default

Compile export-default-from statements to ES2015

Example

export v from 'mod';

Installation

npm install --save-dev babel-plugin-transform-export-default

Usage

.babelrc

{
  "plugins": ["transform-export-default"]
}

Via CLI

babel --plugins transform-export-default script.js

Via Node API

require("babel-core").transform("code", {
  plugins: ["transform-export-default"]
});

References

  • Proposal: Additional export-from statements in ES7 (Withdrawn)
  • ECMAScript Proposal: export default from

Keywords

FAQs

Last updated on 30 Aug 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