JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 239
  • Score
    100M100P100Q85952F
  • License MIT

Is this value a JS regex?

Package Exports

  • is-regexp-x

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (is-regexp-x) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

Travis status Dependency status devDependency status npm version

is-regexp-x

Is this value a JS regex?

Version: 2.0.0
Author: Xotic750 Xotic750@gmail.com
License: MIT
Copyright: Xotic750

module.exports(value)boolean

This method tests if a value is a regex.

Kind: Exported function
Returns: boolean - true if value is a regex; otherwise false.

Param Type Description
value * The value to test.

Example

var isRegex = require('is-regexp-x');

isRegex(undefined); // false
isRegex(null); // false
isRegex(false); // false
isRegex(true); // false
isRegex(42); // false
isRegex('foo'); // false
isRegex(function () {}); // false
isRegex([]); // false
isRegex({})); // false

isRegex(/a/g); // true
isRegex(new RegExp('a', 'g')); // true