theflametrooper 8 anni fa
parent
commit
2a44638987
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  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;
 }