mjackson/mach

View on GitHub
modules/utils/isRegExp.js

Summary

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

module.exports = isRegExp;