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.
 
 
 
 
 
 

35 lines
761 B

name: duk_is_object
proto: |
duk_bool_t duk_is_object(duk_context *ctx, duk_idx_t idx);
stack: |
[ ... val! ... ]
summary: |
<p>Returns 1 if value at <code>idx</code> is an object, otherwise
returns 0. If <code>idx</code> 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. <code><a href="#duk_is_array">duk_is_array()</a></code>.</p>
example: |
if (duk_is_object(ctx, -3)) {
/* ... */
}
tags:
- stack
- object
introduced: 1.0.0