Socket
Socket
Sign inDemoInstall

lodash.escaperegexp

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

lodash.escaperegexp

The modern build of lodash’s `_.escapeRegExp` as a module.


Version published
Weekly downloads
3.3M
decreased by-16.03%
Maintainers
1
Weekly downloads
 
Created

What is lodash.escaperegexp?

The lodash.escaperegexp package is a utility function from the Lodash library that escapes the special characters in a string to be used in a regular expression. This is particularly useful when you need to create a regular expression from user input or other dynamic sources.

What are lodash.escaperegexp's main functionalities?

Escape special characters in a string

This feature allows you to escape special characters in a string so that it can be safely used in a regular expression. In the example, the string '[lodash](https://lodash.com/)' is escaped to '\[lodash\]\(https://lodash\.com/\)'.

const escapeRegExp = require('lodash.escaperegexp');
const escapedString = escapeRegExp('[lodash](https://lodash.com/)');
console.log(escapedString); // Output: \[lodash\]\(https://lodash\.com/\)

Other packages similar to lodash.escaperegexp

Keywords

FAQs

Package last updated on 26 Jan 2015

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc