@mtgame/core 0.0.63 → 0.0.64

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