forked from angular/code.angularjs.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathangular.isObject.html
20 lines (20 loc) · 921 Bytes
/
angular.isObject.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<h1>angular.isObject</h1>
<div class="angular-isobject"><fieldset class="workInProgress"><legend>Work in Progress</legend>
This page is currently being revised. It might be incomplete or contain inaccuracies.</fieldset>
<h2>Description</h2>
<div class="description"><p>Checks if a reference is an <code>Object</code>. Unlike in JavaScript <code>null</code>s are not considered to be
objects.</p></div>
<h2>Dependencies</h2>
<ul class="dependencies"></ul>
<h2>Usage</h2>
<div class="usage"><div ng:non-bindable=""><pre class="brush: js; html-script: true;">angular.isObject(value);</pre>
</div>
<h3>Parameters</h3>
<ul class="parameters"><li><code ng:non-bindable="">value – {*} – </code>
<p>Reference to check.</p></li>
</ul>
<h3>Returns</h3>
<div class="returns"><code ng:non-bindable="">{boolean}</code>
– <p>True if <code>value</code> is an <code>Object</code> but not <code>null</code>.</p></div>
</div>
</div>