Socket
Socket
Sign inDemoInstall

@babel/helper-split-export-declaration

Package Overview
Dependencies
4
Maintainers
5
Versions
55
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @babel/helper-split-export-declaration

## API


Version published
Maintainers
5
Install size
2.00 MB
Created

Package description

What is @babel/helper-split-export-declaration?

The @babel/helper-split-export-declaration package is a utility within the Babel compiler ecosystem. It is designed to assist in the transformation of ECMAScript modules by splitting export declarations that have associated expressions. This is particularly useful in the process of transpiling code to be compatible with environments that have varying levels of support for ES modules.

What are @babel/helper-split-export-declaration's main functionalities?

Splitting Export Declarations

This feature allows the transformation of export statements in JavaScript modules, particularly those that export a declaration and its value in a single statement. The code sample demonstrates how an export default declaration would be transformed to separate the declaration and the export, ensuring compatibility with environments that may not fully support the latest ECMAScript module syntax.

"use strict";\n\nObject.defineProperty(exports, '__esModule', {\n  value: true\n});\nexports.default = void 0;\nvar _default = 'Hello, world!';\nexports.default = _default;"

Other packages similar to @babel/helper-split-export-declaration

Readme

Source

@babel/helper-split-export-declaration

API

declare export default splitExportDeclaration(path: NodePath);

Usage

import traverse from "@babel/traverse";
import splitExportDeclaration from "@babel/helper-split-export-declaration";

// ...

traverse(file, {
  ExportDefaultDeclaration(path) {
    if (!path.get("declaration").isClassDeclaration()) return;
    splitExportDeclaration(path);
  },
});

FAQs

Last updated on 25 May 2018

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