lib/helpers/is-regexp.js

Summary

Maintainability
A
0 mins
Test Coverage
module.exports = function isRegExp (o) {
  return !!o && Object.prototype.toString.call(o) === '[object RegExp]'
}