diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2018-05-26 15:21:15 -0400 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2018-05-26 15:21:17 -0400 |
commit | 7609df9d4f39dec83c633c23833ab8dfd8103ec1 (patch) | |
tree | 5e5ae82d2aa6e28d820f1ba76d617b5c1b828a5e /util.go | |
parent | cbfb7d872009f302b69a55693b5c1fbdc731be69 (diff) |
Support async/await by including ES2017
This required adjusting the module loading system.
Diffstat (limited to 'util.go')
-rw-r--r-- | util.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -9,7 +9,7 @@ import ( func logDebug(format string, v ...interface{}) { // Unless the debug flag is specified, discard logs. if *flagDebug { - fmt.Printf(format+"\n", v) + fmt.Printf(format+"\n", v...) } } |