theflametrooper пре 8 година
родитељ
комит
2a44638987
1 измењених фајлова са 1 додато и 1 уклоњено
  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;
 }