
Product
Introducing Module Reachability: Focus on the Vulnerabilities That Matter
Module Reachability filters out unreachable CVEs so you can focus on vulnerabilities that actually matter to your application.
@babel/helper-optimise-call-expression
Advanced tools
Helper function to optimise call expression
@babel/helper-optimise-call-expression is a utility package within the Babel ecosystem designed to optimize call expressions in JavaScript code. It helps in transforming and optimizing function calls to improve performance and efficiency during the code compilation process.
Optimize Call Expressions
This feature optimizes a call expression by transforming the function call to a more efficient form. The code sample demonstrates how to use the `optimiseCallExpression` function to optimize a call to `myFunction` with arguments `1` and `2`.
const { default: optimiseCallExpression } = require('@babel/helper-optimise-call-expression');
const t = require('@babel/types');
const callee = t.identifier('myFunction');
const args = [t.numericLiteral(1), t.numericLiteral(2)];
const optimizedCall = optimiseCallExpression(callee, null, args);
console.log(optimizedCall);
This Babel plugin optimizes consecutive addition operations by transforming them into a single addition operation. It is similar to @babel/helper-optimise-call-expression in that it aims to optimize specific patterns in the code for better performance.
This plugin removes dead code from the JavaScript bundle, which can lead to performance improvements. While it focuses on eliminating unused code rather than optimizing call expressions, it shares the goal of improving the efficiency of the compiled code.
Helper function to optimise call expression
See our website @babel/helper-optimise-call-expression for more information.
Using npm:
npm install --save @babel/helper-optimise-call-expression
or using yarn:
yarn add @babel/helper-optimise-call-expression
v7.25.9 (2024-10-22)
babel-parser
, babel-template
, babel-types
syntacticPlaceholders
mode (@liuxingbaoyu)babel-helper-compilation-targets
, babel-preset-env
ClassAccessorProperty
to prevent the no-undef
rule (@victorenator)babel-parser
, babel-types
VISITOR_KEYS
etc. faster to access (@liuxingbaoyu)FAQs
Helper function to optimise call expression
The npm package @babel/helper-optimise-call-expression receives a total of 25,242,729 weekly downloads. As such, @babel/helper-optimise-call-expression popularity was classified as popular.
We found that @babel/helper-optimise-call-expression demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 4 open source maintainers collaborating on the project.
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.
Product
Module Reachability filters out unreachable CVEs so you can focus on vulnerabilities that actually matter to your application.
Product
Socket is introducing a new way to organize repositories and apply repository-specific security policies.
Research
Security News
Socket researchers uncovered malicious npm and PyPI packages that steal crypto wallet credentials using Google Analytics and Telegram for exfiltration.