Ohm-Management - Projektarbeit B-ME
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

_baseIsRegExp.js 511B

123456789101112131415161718
  1. var baseGetTag = require('./_baseGetTag'),
  2. isObjectLike = require('./isObjectLike');
  3. /** `Object#toString` result references. */
  4. var regexpTag = '[object RegExp]';
  5. /**
  6. * The base implementation of `_.isRegExp` without Node.js optimizations.
  7. *
  8. * @private
  9. * @param {*} value The value to check.
  10. * @returns {boolean} Returns `true` if `value` is a regexp, else `false`.
  11. */
  12. function baseIsRegExp(value) {
  13. return isObjectLike(value) && baseGetTag(value) == regexpTag;
  14. }
  15. module.exports = baseIsRegExp;