Class: Console

Console()

Console class for control the console of the project.

Constructor

new Console()

Source:

Methods

(static) Clear() → {function}

Clear static method, this clears the console.
Source:
Returns:
Type
function

(static) Debug(…args) → {function}

Debug static method, you can just debug things.
Parameters:
Name Type Attributes Description
args any <repeatable>
Thing to debug
Source:
Returns:
Type
function

(static) EndGroup()

EndGroup static method, you end the started group.
Source:

(static) Error(…args)

Error static method, you can show error.
Parameters:
Name Type Attributes Description
args any <repeatable>
Error to show
Source:

(static) Group(label)

Group static method, you start the group, for finish the group run EndGroup()
Parameters:
Name Type Description
label String Name of group
Source:

(static) Info(…args)

Info static method, you show something
Parameters:
Name Type Attributes Description
args any <repeatable>
Info to show
Source:

(static) Print(…args) → {function}

Print static method, this shows something on the console
Parameters:
Name Type Attributes Description
args any <repeatable>
you can write anything
Source:
Returns:
Type
function

(static) Table(…args)

Table static method, you show a table
Parameters:
Name Type Attributes Description
args any <repeatable>
Table to show
Source:

(static) ViewObject(object)

ViewObject static method, you can show objects.
Parameters:
Name Type Description
object Object Object to show
Source:

(static) Warn(…args)

Warn static method, you show a warn
Parameters:
Name Type Attributes Description
args any <repeatable>
Warn to show
Source:

(static) getString() → {String}

getString static method, you get the source code of Console class.
Source:
Returns:
Type
String