Socket
Socket
Sign inDemoInstall

@babel/helper-wrap-function

Package Overview
Dependencies
Maintainers
4
Versions
85
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

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

Comparing version 7.22.9 to 8.0.0-alpha.0

25

lib/index.js

@@ -1,10 +0,5 @@

"use strict";
import nameFunction from '@babel/helper-function-name';
import template from '@babel/template';
import * as _t from '@babel/types';
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = wrapFunction;
var _helperFunctionName = require("@babel/helper-function-name");
var _template = require("@babel/template");
var _t = require("@babel/types");
const {

@@ -20,3 +15,3 @@ blockStatement,

} = _t;
const buildAnonymousExpressionWrapper = _template.default.expression(`
const buildAnonymousExpressionWrapper = template.expression(`
(function () {

@@ -29,3 +24,3 @@ var REF = FUNCTION;

`);
const buildNamedExpressionWrapper = _template.default.expression(`
const buildNamedExpressionWrapper = template.expression(`
(function () {

@@ -39,3 +34,3 @@ var REF = FUNCTION;

`);
const buildDeclarationWrapper = _template.default.statements(`
const buildDeclarationWrapper = template.statements(`
function NAME(PARAMS) { return REF.apply(this, arguments); }

@@ -63,6 +58,5 @@ function REF() {

{
var _path$arrowFunctionTo;
path = (_path$arrowFunctionTo = path.arrowFunctionToExpression({
path = path.arrowFunctionToExpression({
noNewArrows
})) != null ? _path$arrowFunctionTo : path;
});
}

@@ -105,3 +99,3 @@ node = path.node;

const returnFn = container.callee.body.body[1].argument;
(0, _helperFunctionName.default)({
nameFunction({
node: returnFn,

@@ -128,2 +122,3 @@ parent: path.parent,

export { wrapFunction as default };
//# sourceMappingURL=index.js.map

18

package.json
{
"name": "@babel/helper-wrap-function",
"version": "7.22.9",
"version": "8.0.0-alpha.0",
"description": "Helper to wrap functions inside a function call.",

@@ -17,14 +17,18 @@ "repository": {

"dependencies": {
"@babel/helper-function-name": "^7.22.5",
"@babel/template": "^7.22.5",
"@babel/types": "^7.22.5"
"@babel/helper-function-name": "^8.0.0-alpha.0",
"@babel/template": "^8.0.0-alpha.0",
"@babel/types": "^8.0.0-alpha.0"
},
"engines": {
"node": ">=6.9.0"
"node": "^16.20.0 || ^18.16.0 || >=20.0.0"
},
"devDependencies": {
"@babel/traverse": "^7.22.8"
"@babel/traverse": "^8.0.0-alpha.0"
},
"author": "The Babel Team (https://babel.dev/team)",
"type": "commonjs"
"exports": {
".": "./lib/index.js",
"./package.json": "./package.json"
},
"type": "module"
}

Sorry, the diff of this file is not supported yet

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