aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--console/console.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/console/console.go b/console/console.go
index 222ac3b52..50196d7f4 100644
--- a/console/console.go
+++ b/console/console.go
@@ -236,7 +236,7 @@ func (c *Console) clearHistory() {
// consoleOutput is an override for the console.log and console.error methods to
// stream the output into the configured output stream instead of stdout.
func (c *Console) consoleOutput(call otto.FunctionCall) otto.Value {
- output := []string{}
+ var output []string
for _, argument := range call.ArgumentList {
output = append(output, fmt.Sprintf("%v", argument))
}