mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-08 18:17:48 +00:00
13
index.html
13
index.html
@@ -231,6 +231,7 @@
|
|||||||
<li>- <a href="#isNaN">isNaN</a></li>
|
<li>- <a href="#isNaN">isNaN</a></li>
|
||||||
<li>- <a href="#isNull">isNull</a></li>
|
<li>- <a href="#isNull">isNull</a></li>
|
||||||
<li>- <a href="#isUndefined">isUndefined</a></li>
|
<li>- <a href="#isUndefined">isUndefined</a></li>
|
||||||
|
<li>- <a href="#isObject">isObject</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
<a class="toc_title" href="#utility">
|
<a class="toc_title" href="#utility">
|
||||||
@@ -1222,6 +1223,18 @@ _.isNull(undefined);
|
|||||||
<pre>
|
<pre>
|
||||||
_.isUndefined(window.missingVariable);
|
_.isUndefined(window.missingVariable);
|
||||||
=> true
|
=> true
|
||||||
|
</pre>
|
||||||
|
|
||||||
|
<p id="isObject">
|
||||||
|
<b class="header">isObject</b><code>_.isObject(variable)</code>
|
||||||
|
<br />
|
||||||
|
Returns <i>true</i> if <b>variable</b> is an <i>object</i>.
|
||||||
|
</p>
|
||||||
|
<pre>
|
||||||
|
_.isObject({});
|
||||||
|
=> true
|
||||||
|
_.isObject('am I an object?');
|
||||||
|
=> false
|
||||||
</pre>
|
</pre>
|
||||||
|
|
||||||
<h2 id="utility">Utility Functions</h2>
|
<h2 id="utility">Utility Functions</h2>
|
||||||
|
|||||||
Reference in New Issue
Block a user