ish.io.console

Console-based functionality.

Wraps the window.console interface, only displaying messages on the console if ish.config.ish().debug is truthy.

Source:

Methods

ish.io.console.error(…x)

Source:
Logs the passed argument(s) to the console via the native console.error function if ish.config.ish().debug is truthy.
Parameters:
Name Type Attributes Description
x varient <repeatable>
Value(s) to log.

ish.io.console.log(…x)

Source:
Logs the passed argument(s) to the console via the native console.log function if ish.config.ish().debug is truthy.
Parameters:
Name Type Attributes Description
x varient <repeatable>
Value(s) to log.

ish.io.console.warn(…x)

Source:
Logs the passed argument(s) to the console via the native console.warn function if ish.config.ish().debug is truthy.
Parameters:
Name Type Attributes Description
x varient <repeatable>
Value(s) to log.