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