Last change
on this file since 6fe77af was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
646 bytes
|
Line | |
---|
1 | var baseIsRegExp = require('./_baseIsRegExp'),
|
---|
2 | baseUnary = require('./_baseUnary'),
|
---|
3 | nodeUtil = require('./_nodeUtil');
|
---|
4 |
|
---|
5 | /* Node.js helper references. */
|
---|
6 | var nodeIsRegExp = nodeUtil && nodeUtil.isRegExp;
|
---|
7 |
|
---|
8 | /**
|
---|
9 | * Checks if `value` is classified as a `RegExp` object.
|
---|
10 | *
|
---|
11 | * @static
|
---|
12 | * @memberOf _
|
---|
13 | * @since 0.1.0
|
---|
14 | * @category Lang
|
---|
15 | * @param {*} value The value to check.
|
---|
16 | * @returns {boolean} Returns `true` if `value` is a regexp, else `false`.
|
---|
17 | * @example
|
---|
18 | *
|
---|
19 | * _.isRegExp(/abc/);
|
---|
20 | * // => true
|
---|
21 | *
|
---|
22 | * _.isRegExp('/abc/');
|
---|
23 | * // => false
|
---|
24 | */
|
---|
25 | var isRegExp = nodeIsRegExp ? baseUnary(nodeIsRegExp) : baseIsRegExp;
|
---|
26 |
|
---|
27 | module.exports = isRegExp;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.