Socket
Socket
Sign inDemoInstall

@babel/helper-function-name

Package Overview
Dependencies
17
Maintainers
4
Versions
71
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @babel/helper-function-name

Helper function to change the property 'name' of every function


Version published
Weekly downloads
40M
decreased by-0.3%
Maintainers
4
Install size
4.42 MB
Created
Weekly downloads
 

Package description

What is @babel/helper-function-name?

The @babel/helper-function-name package is a utility that is used within the Babel compiler. It helps in the process of naming function expressions, particularly in situations where a function does not have an explicit name. This can be useful for debugging purposes, as it allows for better stack traces by providing names to otherwise anonymous functions.

What are @babel/helper-function-name's main functionalities?

Naming Function Expressions

This code sample demonstrates how the @babel/helper-function-name package can be used to name the class methods within the transpiled code. The package helps to assign names to the class methods that are created using the Babel transpiler, which would otherwise be anonymous.

"use strict";

var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");

var _classCallCheck2 = _interopRequireDefault(require("@babel/runtime/helpers/classCallCheck"));

var _createClass2 = _interopRequireDefault(require("@babel/runtime/helpers/createClass"));

var MyClass = /*#__PURE__*/function () {
  function MyClass() {
    (0, _classCallCheck2["default"])(this, MyClass);
  }

  (0, _createClass2["default"])(MyClass, [{
    key: "myMethod",
    value: function myMethod() {}
  }]);

  return MyClass;
}();

Other packages similar to @babel/helper-function-name

Changelog

Source

v7.19.0 (2022-09-05)

:eyeglasses: Spec Compliance
  • babel-parser
    • #14666 Support private name in decorator member expression (@JLHwung)
  • babel-helpers, babel-plugin-proposal-async-generator-functions, babel-preset-env, babel-runtime-corejs2, babel-runtime-corejs3, babel-runtime
:rocket: New Feature
  • babel-generator, babel-helpers, babel-parser, babel-plugin-proposal-decorators, babel-plugin-syntax-decorators, babel-runtime-corejs2, babel-runtime-corejs3, babel-runtime
  • babel-parser
  • babel-generator, babel-parser
  • babel-standalone
  • babel-helper-create-regexp-features-plugin, babel-helpers, babel-plugin-proposal-duplicate-named-capturing-groups-regex, babel-plugin-transform-named-capturing-groups-regex, babel-standalone
:bug: Bug Fix
  • babel-helper-function-name, babel-helper-wrap-function, babel-plugin-transform-classes
    • #14897 Fix: class transform should not drop method definition when key contains non-BMP characters (@JLHwung)
  • babel-plugin-transform-typescript
  • babel-parser
  • babel-helper-builder-react-jsx
:nail_care: Polish
:memo: Documentation
:house: Internal
  • babel-standalone
  • babel-core, babel-parser, babel-traverse

Readme

Source

@babel/helper-function-name

Helper function to change the property 'name' of every function

See our website @babel/helper-function-name for more information.

Install

Using npm:

npm install --save @babel/helper-function-name

or using yarn:

yarn add @babel/helper-function-name

FAQs

Last updated on 05 Sep 2022

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