JSPM

@jsmicro/is-regexp

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

Check does the given Javascript Object is a regexp.

Package Exports

  • @jsmicro/is-regexp

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 (@jsmicro/is-regexp) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

JSMicro - Is RegExp

isRegExp(object)

Check does the given Javascript Object (array, object, string, etc) is a regexp.

isNotRegExp(object)

Check does the given Javascript RegExp (array, object, string, etc) is not a regexp.

Browser Usage

bower install --save jsmicro-is-regexp
<script type="text/javascript" src="bower_components/jsmicro-is-regexp/index.js">
<script type="text/javascript">
    var obj = /[a-z]+/g;
    var nbr = 200;

    // Available in the window object.
    isRegExp(obj);      // true
    isRegExp(nbr);      // false
    isNotRegExp(nbr);   // true
</script>

NodeJS Usage

npm install --save @jsmicro/is-regexp
const obj = require('@jsmicro/is-regexp');

// Available in the global object.
isRegExp(/[a-z]+/g); // true
isRegExp(23322333); // false
isNotRegExp(23234); // true

// Also available in the export object.
obj.isRegExp(/[a-z]+/g); // true
obj.isRegExp(23322333); // false
obj.isNotRegExp(23333); // true

Changelogs

v1.0.1 - May 21, 2016

  • Added .npmignore

v1.0.0 - May 19, 2016

  • Initial release.

The MIT License (MIT)