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/src/Ice/Struct.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/src/Ice/Struct.js')
-rw-r--r-- | js/src/Ice/Struct.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/src/Ice/Struct.js b/js/src/Ice/Struct.js index 96a4a2a3bb2..fa9e6b60a7b 100644 --- a/js/src/Ice/Struct.js +++ b/js/src/Ice/Struct.js @@ -97,7 +97,7 @@ function memberHashCode(h, e) } else { - const t = typeof(e); + const t = typeof e; if(e instanceof String || t == "string") { return Ice.HashUtil.addString(h, e); |