New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More

@babel/plugin-transform-named-capturing-groups-regex

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@babel/plugin-transform-named-capturing-groups-regex

Compile regular expressions using named groups to ES5.

8.0.0-alpha.17
next
Version published
Weekly downloads
21M
-14.98%
Maintainers
4
Weekly downloads
 
Created

What is @babel/plugin-transform-named-capturing-groups-regex?

The @babel/plugin-transform-named-capturing-groups-regex package allows Babel to transform named capturing groups in regular expressions into a format that can be understood by environments that do not support this feature natively. Named capturing groups in regular expressions provide a way to assign names to the various parts of a matched input, making the regex more readable and the matches easier to work with.

What are @babel/plugin-transform-named-capturing-groups-regex's main functionalities?

Transformation of named capturing groups

This feature allows developers to use named capturing groups in their regular expressions, which are then transformed by Babel for compatibility with environments that do not support this syntax. The code sample shows a regular expression that uses named capturing groups to match a date format.

"const regex = /(?<year>\d{4})-(?<month>\d{2})-(?<day>\d{2})/;"

Other packages similar to @babel/plugin-transform-named-capturing-groups-regex

FAQs

Package last updated on 11 Mar 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