]> git.proxmox.com Git - mirror_novnc.git/blobdiff - core/base64.js
Enforce comma spacing
[mirror_novnc.git] / core / base64.js
index 895aa464d1a424d0ba31ba0ca0ca07741a17b347..7871c538fa46cc3717ba4b1be65a6612b50eff8f 100644 (file)
@@ -43,6 +43,7 @@ export default {
     },
 
     /* Convert Base64 data to a string */
+    /* eslint-disable comma-spacing */
     toBinaryTable : [
         -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1,
         -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1,
@@ -53,6 +54,7 @@ export default {
         -1,26,27,28, 29,30,31,32, 33,34,35,36, 37,38,39,40,
         41,42,43,44, 45,46,47,48, 49,50,51,-1, -1,-1,-1,-1
     ],
+    /* eslint-enable comma-spacing */
 
     decode(data, offset) {
         offset = typeof(offset) !== 'undefined' ? offset : 0;