@mtgame/core 0.0.62 → 0.0.63

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.
@@ -2773,7 +2773,9 @@ var HockeyGameStatistic = /** @class */ (function (_super) {
2773
2773
  });
2774
2774
  Object.defineProperty(HockeyGameStatistic.prototype, "gameMinutes", {
2775
2775
  get: function () {
2776
- return Math.floor(this.gameTime / 60);
2776
+ var minutes = Math.floor(this.gameTime / 60);
2777
+ var seconds = this.gameTime - minutes * 60;
2778
+ return "" + (minutes < 9 ? '0' : '') + minutes + ":" + (seconds < 9 ? '0' : '') + seconds;
2777
2779
  },
2778
2780
  enumerable: true,
2779
2781
  configurable: true