You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 7-8.RSVP
Socket
Socket
Sign inDemoInstall

@babel/helper-split-export-declaration

Package Overview
Dependencies
Maintainers
4
Versions
60
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@babel/helper-split-export-declaration


Version published
Weekly downloads
38M
decreased by-16.12%
Maintainers
4
Install size
2.39 MB
Created
Weekly downloads
 

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

Changelog

Source

v7.24.7 (2024-06-05)

:bug: Bug Fix
  • babel-node
    • #16554 Allow extra flags in babel-node (@nicolo-ribaudo)
  • babel-traverse
  • babel-helper-transform-fixture-test-runner, babel-plugin-proposal-explicit-resource-management
:house: Internal
  • babel-helpers, babel-runtime-corejs2, babel-runtime-corejs3, babel-runtime

Readme

Source

@babel/helper-split-export-declaration

See our website @babel/helper-split-export-declaration for more information.

Install

Using npm:

npm install --save @babel/helper-split-export-declaration

or using yarn:

yarn add @babel/helper-split-export-declaration

FAQs

Package last updated on 05 Jun 2024

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc