Security News
JSR Working Group Kicks Off with Ambitious Roadmap and Plans for Open Governance
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
@babel/plugin-transform-sticky-regex
Advanced tools
Compile ES2015 sticky regex to an ES5 RegExp constructor
The @babel/plugin-transform-sticky-regex package is a plugin for Babel, a JavaScript compiler, that transforms sticky regexes (regular expressions with the 'y' flag) into an equivalent form that can be executed in environments that do not support the 'y' flag. This ensures compatibility across different JavaScript environments, including older browsers or JavaScript engines.
Transformation of sticky regexes
This feature allows the transformation of sticky regexes, which use the 'y' flag, into a form that can be executed in environments that do not support this flag. The code sample demonstrates how a sticky regex is transformed by the plugin.
"use strict";\n\nvar _regexp = /o+/y;\n\nvar _regexp2 = babelHelpers.wrapRegExp(/o+/, {\n sticky: true\n});
This package is a part of the regexpu project, which is a collection of tools to process regular expressions. While not a direct plugin for Babel, regexpu-core can transform ES2015 Unicode regular expressions into equivalent ES5 syntax. It covers a broader range of regex features, including but not limited to sticky regexes, making it a more comprehensive solution for regex compatibility issues.
Compile ES2015 sticky regex to an ES5 RegExp constructor
See our website @babel/plugin-transform-sticky-regex for more information.
Using npm:
npm install --save-dev @babel/plugin-transform-sticky-regex
or using yarn:
yarn add @babel/plugin-transform-sticky-regex --dev
FAQs
Compile ES2015 sticky regex to an ES5 RegExp constructor
The npm package @babel/plugin-transform-sticky-regex receives a total of 22,112,337 weekly downloads. As such, @babel/plugin-transform-sticky-regex popularity was classified as popular.
We found that @babel/plugin-transform-sticky-regex 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.
Security News
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
Security News
Research
An advanced npm supply chain attack is leveraging Ethereum smart contracts for decentralized, persistent malware control, evading traditional defenses.
Security News
Research
Attackers are impersonating Sindre Sorhus on npm with a fake 'chalk-node' package containing a malicious backdoor to compromise developers' projects.