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