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

is-regexp

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

is-regexp

Check if a value is a regular expression

3.1.0
latest
Source
npm
Version published
Weekly downloads
9M
-8.24%
Maintainers
1
Weekly downloads
 
Created

What is is-regexp?

The is-regexp npm package is a utility that allows you to check if a given value is a regular expression. This can be useful in various scenarios where you need to validate or handle regular expressions specifically.

What are is-regexp's main functionalities?

Check if a value is a regular expression

This feature allows you to determine if a given value is a regular expression. The function returns true if the value is a regular expression and false otherwise.

const isRegexp = require('is-regexp');

console.log(isRegexp(/abc/)); // true
console.log(isRegexp('abc')); // false

Other packages similar to is-regexp

Keywords

regex

FAQs

Package last updated on 31 Oct 2021

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