diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2018-06-11 13:16:14 +0200 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2018-06-11 17:49:52 +0200 |
commit | b042c7c071827fd516bf7b5b52f2aed0473691e1 (patch) | |
tree | 827e9c3c20909c648d3f113127914ca2d81df7fa /console.ts | |
parent | cc29542ad87fba6d605e65f468f1943bf8e200cb (diff) |
Run 'make fmt'
Diffstat (limited to 'console.ts')
-rw-r--r-- | console.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/console.ts b/console.ts index 0d1585bc8..af92c8871 100644 --- a/console.ts +++ b/console.ts @@ -25,7 +25,8 @@ function stringify(ctx: ConsoleContext, value: any): string { case "symbol": return String(value); case "function": - if (value.name && value.name !== "anonymous") { // from MDN spec + if (value.name && value.name !== "anonymous") { + // from MDN spec return `[Function: ${value.name}]`; } return "[Function]"; |