diff options
author | Jose <jose@zeroc.com> | 2018-04-30 21:10:23 +0200 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2018-04-30 21:10:23 +0200 |
commit | 530608e4ce63dd36d1659b58d1a3fb7fdcf56bea (patch) | |
tree | b5195405b16dd31ac1c486daf7f3ff2572ce6499 /js/test/Ice/timeout/Client.js | |
parent | Allow FileParser.Endpoints to be set via Ice::Properties (#58) (diff) | |
download | ice-530608e4ce63dd36d1659b58d1a3fb7fdcf56bea.tar.bz2 ice-530608e4ce63dd36d1659b58d1a3fb7fdcf56bea.tar.xz ice-530608e4ce63dd36d1659b58d1a3fb7fdcf56bea.zip |
Fix JavaScript errors and warnings report by ESLINT
Close #28
Diffstat (limited to 'js/test/Ice/timeout/Client.js')
-rw-r--r-- | js/test/Ice/timeout/Client.js | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/js/test/Ice/timeout/Client.js b/js/test/Ice/timeout/Client.js index 25393cfb54b..8f8e92d520b 100644 --- a/js/test/Ice/timeout/Client.js +++ b/js/test/Ice/timeout/Client.js @@ -385,7 +385,6 @@ exports._test = run; exports._runServer = true; -} -(typeof(global) !== "undefined" && typeof(global.process) !== "undefined" ? module : undefined, - typeof(global) !== "undefined" && typeof(global.process) !== "undefined" ? require : this.Ice._require, - typeof(global) !== "undefined" && typeof(global.process) !== "undefined" ? exports : this)); +}(typeof global !== "undefined" && typeof global.process !== "undefined" ? module : undefined, + typeof global !== "undefined" && typeof global.process !== "undefined" ? require : this.Ice._require, + typeof global !== "undefined" && typeof global.process !== "undefined" ? exports : this)); |