diff options
Diffstat (limited to 'js/src/Ice/AsyncStatus.js')
-rw-r--r-- | js/src/Ice/AsyncStatus.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/js/src/Ice/AsyncStatus.js b/js/src/Ice/AsyncStatus.js index 6c1b397a8c3..4b970e48f1a 100644 --- a/js/src/Ice/AsyncStatus.js +++ b/js/src/Ice/AsyncStatus.js @@ -7,6 +7,6 @@ // // ********************************************************************** -var Ice = require("../Ice/ModuleRegistry").Ice; -Ice.AsyncStatus = {Queued: 0, Sent: 1}; +const Ice = require("../Ice/ModuleRegistry").Ice; +Ice.AsyncStatus = { Queued: 0, Sent: 1 }; module.exports.Ice = Ice; |