Socket
Socket
Sign inDemoInstall

@babel/plugin-transform-block-scoped-functions

Package Overview
Dependencies
0
Maintainers
1
Versions
64
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @babel/plugin-transform-block-scoped-functions

Babel plugin to ensure function declarations at the block level are block scoped


Version published
Maintainers
1
Created

Package description

What is @babel/plugin-transform-block-scoped-functions?

The @babel/plugin-transform-block-scoped-functions npm package is designed to ensure that functions defined within blocks (such as if statements or for loops) are properly scoped to those blocks in environments that may not support this feature natively. This is particularly useful for ensuring compatibility with older browsers or JavaScript environments that do not fully implement ES6 scoping rules.

What are @babel/plugin-transform-block-scoped-functions's main functionalities?

Function Scoping

This feature ensures that functions defined within a block are scoped to that block. This is important for compatibility with ES6, where functions are block-scoped, unlike in ES5 where they are function-scoped. The plugin transforms the code to work correctly in environments that do not support block scoping natively.

"use strict";\n\nif (true) {\n  function foo() { return 1; }\n}\n\nfoo(); // Throws ReferenceError in ES6, transformed code works by scoping function within the block

Other packages similar to @babel/plugin-transform-block-scoped-functions

Readme

Source

@babel/plugin-transform-block-scoped-functions

Babel plugin to ensure function declarations at the block level are block scoped.

Examples

In

{
  function name (n) {
    return n;
  }
}

name("Steve");

Out

{
  var _name = function _name(n) {
    return n;
  };
}

name("Steve");

Installation

npm install --save-dev @babel/plugin-transform-block-scoped-functions

Usage

.babelrc

{
  "plugins": ["@babel/transform-block-scoped-functions"]
}

Via CLI

babel --plugins @babel/transform-block-scoped-functions script.js

Via Node API

require("@babel/core").transform("code", {
  plugins: ["@babel/transform-block-scoped-functions"]
});

Keywords

FAQs

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