🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Sign inDemoInstall
Socket

@babel/helper-wrap-function

Package Overview
Dependencies
Maintainers
4
Versions
92
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@babel/helper-wrap-function

Helper to wrap functions inside a function call.

7.27.1
latest
Source
npm
Version published
Weekly downloads
27M
13.17%
Maintainers
4
Weekly downloads
 
Created

What is @babel/helper-wrap-function?

The @babel/helper-wrap-function package is a utility within the Babel ecosystem designed to assist in wrapping functions. This package is particularly useful when transforming code during the build process, allowing developers to modify function behavior or inject additional functionality seamlessly.

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

Function Wrapping

This feature allows developers to wrap any given function with additional behavior. In the provided code sample, the original function is wrapped to include a console log statement that outputs the arguments with which the function is called.

import wrapFunction from '@babel/helper-wrap-function';

const myFunction = function (a, b) {
  return a + b;
};

const wrappedFunction = wrapFunction(myFunction, function (fn, args, context) {
  console.log('Function is called with arguments:', args);
  return fn.apply(context, args);
});

wrappedFunction(1, 2);

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

FAQs

Package last updated on 30 Apr 2025

Did you know?

Socket

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