🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Sign inDemoInstall
Socket

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

Package Overview
Dependencies
Maintainers
4
Versions
59
Alerts
File Explorer

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.

7.27.1
latest
Source
npm
Version published
Weekly downloads
24M
-4.94%
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

Keywords

babel-plugin

FAQs

Package last updated on 30 Apr 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