Last change
on this file since bdd6491 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
733 bytes
|
Line | |
---|
1 | /**
|
---|
2 | * Checks if `value` is the
|
---|
3 | * [language type](http://www.ecma-international.org/ecma-262/7.0/#sec-ecmascript-language-types)
|
---|
4 | * of `Object`. (e.g. arrays, functions, objects, regexes, `new Number(0)`, and `new String('')`)
|
---|
5 | *
|
---|
6 | * @static
|
---|
7 | * @memberOf _
|
---|
8 | * @since 0.1.0
|
---|
9 | * @category Lang
|
---|
10 | * @param {*} value The value to check.
|
---|
11 | * @returns {boolean} Returns `true` if `value` is an object, else `false`.
|
---|
12 | * @example
|
---|
13 | *
|
---|
14 | * _.isObject({});
|
---|
15 | * // => true
|
---|
16 | *
|
---|
17 | * _.isObject([1, 2, 3]);
|
---|
18 | * // => true
|
---|
19 | *
|
---|
20 | * _.isObject(_.noop);
|
---|
21 | * // => true
|
---|
22 | *
|
---|
23 | * _.isObject(null);
|
---|
24 | * // => false
|
---|
25 | */
|
---|
26 | function isObject(value) {
|
---|
27 | var type = typeof value;
|
---|
28 | return value != null && (type == 'object' || type == 'function');
|
---|
29 | }
|
---|
30 |
|
---|
31 | module.exports = isObject;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.