From 53829cbd5c51e3319b843130890fbef0abd951c9 Mon Sep 17 00:00:00 2001 From: bjh Date: Thu, 26 Jan 2012 16:04:58 -0500 Subject: [PATCH] added a false case for the isObject test documentation --- index.html | 2 ++ 1 file changed, 2 insertions(+) diff --git a/index.html b/index.html index 3aa65a58a..b19f774c5 100644 --- a/index.html +++ b/index.html @@ -1233,6 +1233,8 @@ _.isUndefined(window.missingVariable);
 _.isObject({});
 => true
+_.isObject('am I an object?');
+=> false
 

Utility Functions