Explorar el Código

Minor syntax fix

theflametrooper hace 8 años
padre
commit
2a44638987
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      backend/logic/logger.js

+ 1 - 1
backend/logic/logger.js

@@ -1,6 +1,6 @@
 'use strict';
 
-function twoDigits(num) {
+let twoDigits = (num) => {
 	return (num < 10) ? '0' + num : num;
 }