Security News
pnpm 10.0.0 Blocks Lifecycle Scripts by Default
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
@babel/helper-function-name
Advanced tools
Helper function to change the property 'name' of every function
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.
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;
}();
This plugin is part of the Babel ecosystem and was used to transform ES2015 function names. It has been deprecated in favor of the @babel/preset-env package, but it served a similar purpose to @babel/helper-function-name by providing names to functions for better debugging and readability.
Helper function to change the property 'name' of every function
See our website @babel/helper-function-name for more information.
Using npm:
npm install --save @babel/helper-function-name
or using yarn:
yarn add @babel/helper-function-name
v7.24.7 (2024-06-05)
babel-node
babel-traverse
constantViolations
with destructuring (@liuxingbaoyu)babel-helper-transform-fixture-test-runner
, babel-plugin-proposal-explicit-resource-management
using
in switch
correctly (@liuxingbaoyu)babel-helpers
, babel-runtime-corejs2
, babel-runtime-corejs3
, babel-runtime
FAQs
Helper function to change the property 'name' of every function
The npm package @babel/helper-function-name receives a total of 18,226,867 weekly downloads. As such, @babel/helper-function-name popularity was classified as popular.
We found that @babel/helper-function-name demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 4 open source maintainers collaborating on the project.
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.
Security News
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
Research
Security News
Socket researchers have discovered multiple malicious npm packages targeting Solana private keys, abusing Gmail to exfiltrate the data and drain Solana wallets.