You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

31 lines
652 B

=proto
int duk_is_object(duk_context *ctx, int index);
=stack
[ ... val! ... ]
=summary
<p>Returns 1 if value at <tt>index</tt> is an object, otherwise
returns 0. If <tt>index</tt> is invalid, also returns 0.</p>
<p>Note that many values are considered to be an object, e.g.:</p>
<ul>
<li>Ecmascript object</li>
<li>Ecmascript array</li>
<li>Ecmascript function</li>
<li>Duktape thread (coroutine)</li>
<li>Duktape internal objects</li>
</ul>
<p>Specific object types can be checked with separate API calls,
e.g. <tt><a href="#duk_is_array">duk_is_array()</a></tt>.</p>
=example
if (duk_is_object(ctx, -3)) {
/* ... */
}
=tags
stack
object