@mtgame/core 0.0.28 → 0.0.30

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2787,6 +2787,15 @@
2787
2787
  enumerable: true,
2788
2788
  configurable: true
2789
2789
  });
2790
+ Object.defineProperty(HockeyStatistic.prototype, "userMinutes", {
2791
+ get: function () {
2792
+ var minutes = Math.floor(this.gameTime / 60);
2793
+ var seconds = this.gameTime - minutes * 60;
2794
+ return "" + (minutes < 10 ? 0 : '') + minutes + ":" + (seconds < 10 ? 0 : '') + seconds;
2795
+ },
2796
+ enumerable: true,
2797
+ configurable: true
2798
+ });
2790
2799
  HockeyStatistic.toFront = function (data) { };
2791
2800
  HockeyStatistic.toBack = function (data) { };
2792
2801
  __decorate([
@@ -5922,7 +5931,7 @@
5922
5931
  excellent_serve_receives: 'excellentServeReceives',
5923
5932
  points: 'points',
5924
5933
  faults: 'faults',
5925
- yellows_cards: 'yellowCards',
5934
+ yellow_cards: 'yellowCards',
5926
5935
  }
5927
5936
  })
5928
5937
  ], VolleyballGameStatistic);