@amphibian/is-regexp

regexp type checker

Usage no npm install needed!

<script type="module">
  import amphibianIsRegexp from 'https://cdn.skypack.dev/@amphibian/is-regexp';
</script>

README

is-regexp

build status

regexp type checker

npm install @amphibian/is-regexp
var isRegExp = require('@amphibian/is-regexp');

isRegExp('test'); // > false
isRegExp(/bazinga/); // > true
isRegExp(new RegExp('bazinga')); // > true