You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 7-8.RSVP
Socket
Socket
Sign inDemoInstall

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


Version published
Weekly downloads
7.1M
decreased by-19.86%
Maintainers
1
Install size
4.11 kB
Created
Weekly downloads
 

Package description

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

Readme

Source

is-regexp

Check if a value is a regular expression

Install

$ npm install is-regexp

Usage

import isRegexp from 'is-regexp';

isRegexp('unicorn');
//=> false

isRegexp(/unicorn/);
//=> true

isRegexp(new RegExp('unicorn'));
//=> true

FAQ

Why not just use instanceof instead of this package?
  • is - Type check values

Get professional support for this package with a Tidelift subscription
Tidelift helps make open source sustainable for maintainers while giving companies
assurances about security, maintenance, and licensing for their dependencies.

Keywords

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

SocketSocket SOC 2 Logo

Product

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

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc