]> git.proxmox.com Git - mirror_novnc.git/blobdiff - core/input/keysymdef.js
Use ES6 classes
[mirror_novnc.git] / core / input / keysymdef.js
index 5969b5dd9e6a4013eb78b0e6f45612d4bac6280d..951cacab673fa34adf7039eac1c8d4ccab934c7e 100644 (file)
@@ -670,7 +670,7 @@ const codepoints = {
 };
 
 export default {
-    lookup : function(u) {
+    lookup(u) {
         // Latin-1 is one-to-one mapping
         if ((u >= 0x20) && (u <= 0xff)) {
             return u;