Socket
Socket
Sign inDemoInstall

@babel/helper-wrap-function

Package Overview
Dependencies
11
Maintainers
4
Versions
77
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @babel/helper-wrap-function

Helper to wrap functions inside a function call.


Version published
Weekly downloads
20M
decreased by-6.47%
Maintainers
4
Install size
4.44 MB
Created
Weekly downloads
 

Package description

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

Readme

Source

@babel/helper-wrap-function

Helper to wrap functions inside a function call.

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

Install

Using npm:

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

or using yarn:

yarn add @babel/helper-wrap-function

FAQs

Last updated on 28 Feb 2024

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