Last change
on this file since 571e0df was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
993 bytes
|
Rev | Line | |
---|
[6a3a178] | 1 | var baseGetTag = require('./_baseGetTag'),
|
---|
| 2 | isObject = require('./isObject');
|
---|
| 3 |
|
---|
| 4 | /** `Object#toString` result references. */
|
---|
| 5 | var asyncTag = '[object AsyncFunction]',
|
---|
| 6 | funcTag = '[object Function]',
|
---|
| 7 | genTag = '[object GeneratorFunction]',
|
---|
| 8 | proxyTag = '[object Proxy]';
|
---|
| 9 |
|
---|
| 10 | /**
|
---|
| 11 | * Checks if `value` is classified as a `Function` object.
|
---|
| 12 | *
|
---|
| 13 | * @static
|
---|
| 14 | * @memberOf _
|
---|
| 15 | * @since 0.1.0
|
---|
| 16 | * @category Lang
|
---|
| 17 | * @param {*} value The value to check.
|
---|
| 18 | * @returns {boolean} Returns `true` if `value` is a function, else `false`.
|
---|
| 19 | * @example
|
---|
| 20 | *
|
---|
| 21 | * _.isFunction(_);
|
---|
| 22 | * // => true
|
---|
| 23 | *
|
---|
| 24 | * _.isFunction(/abc/);
|
---|
| 25 | * // => false
|
---|
| 26 | */
|
---|
| 27 | function isFunction(value) {
|
---|
| 28 | if (!isObject(value)) {
|
---|
| 29 | return false;
|
---|
| 30 | }
|
---|
| 31 | // The use of `Object#toString` avoids issues with the `typeof` operator
|
---|
| 32 | // in Safari 9 which returns 'object' for typed arrays and other constructors.
|
---|
| 33 | var tag = baseGetTag(value);
|
---|
| 34 | return tag == funcTag || tag == genTag || tag == asyncTag || tag == proxyTag;
|
---|
| 35 | }
|
---|
| 36 |
|
---|
| 37 | module.exports = isFunction;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.