Socket
Socket
Sign inDemoInstall

@babel/helper-wrap-function

Package Overview
Dependencies
32
Maintainers
5
Versions
78
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
Maintainers
5
Install size
3.77 MB
Created

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-dev @babel/helper-wrap-function

or using yarn:

yarn add @babel/helper-wrap-function --dev

FAQs

Last updated on 27 Aug 2018

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