UNPKG

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