diff --git a/index.html b/index.html index b19f774c5..181e10983 100644 --- a/index.html +++ b/index.html @@ -221,6 +221,7 @@
+ isObject_.isObject(value)
+
+ Returns true if value is an Object.
+
+_.isObject({});
+=> true
+_.isObject(1);
+=> false
@@ -1223,18 +1235,6 @@ _.isNull(undefined);
_.isUndefined(window.missingVariable); => true -- -
- isObject_.isObject(variable)
-
- Returns true if variable is an object.
-
-_.isObject({});
-=> true
-_.isObject('am I an object?');
-=> false