Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@babel/helper-function-name

Package Overview
Dependencies
Maintainers
6
Versions
76
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@babel/helper-function-name - npm Package Compare versions

Comparing version 7.16.0 to 7.16.7

6

lib/index.js

@@ -144,3 +144,3 @@ "use strict";

id
}, localBinding = false) {
}, localBinding = false, supportUnicodeId = false) {
if (node.id) return;

@@ -184,2 +184,6 @@

if (!supportUnicodeId && isFunction(node) && /[\uD800-\uDFFF]/.test(name)) {
return;
}
name = toBindingIdentifierName(name);

@@ -186,0 +190,0 @@ id = identifier(name);

8

package.json
{
"name": "@babel/helper-function-name",
"version": "7.16.0",
"version": "7.16.7",
"description": "Helper function to change the property 'name' of every function",

@@ -17,5 +17,5 @@ "repository": {

"dependencies": {
"@babel/helper-get-function-arity": "^7.16.0",
"@babel/template": "^7.16.0",
"@babel/types": "^7.16.0"
"@babel/helper-get-function-arity": "^7.16.7",
"@babel/template": "^7.16.7",
"@babel/types": "^7.16.7"
},

@@ -22,0 +22,0 @@ "engines": {

@@ -12,3 +12,3 @@ # @babel/helper-function-name

```sh
npm install --save-dev @babel/helper-function-name
npm install --save @babel/helper-function-name
```

@@ -19,3 +19,3 @@

```sh
yarn add @babel/helper-function-name --dev
yarn add @babel/helper-function-name
```
SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc