Returns whether the specified value is an object.
Syntax
isObject( object )
object.isObject( )
Parameters
object
|
the object to check.
|
Returns
boolean
|
true if object is an instance of an object.
false if object is not an instance of an object.
|
Example
if isObject( obj ) then
println( "is instance of an object" )
end
|