Ver código fonte

Minor syntax fix

theflametrooper 8 anos atrás
pai
commit
2a44638987
1 arquivos alterados com 1 adições e 1 exclusões
  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;
 }