Methods
ish.io.console.error(…x)
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)
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)
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. |