@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.
@@ -2986,9 +2986,7 @@
2986
2986
  });
2987
2987
  Object.defineProperty(HockeyGameStatistic.prototype, "gameMinutes", {
2988
2988
  get: function () {
2989
- var minutes = Math.floor(this.gameTime / 60);
2990
- var seconds = this.gameTime - minutes * 60;
2991
- return "" + (minutes < 9 ? '0' : '') + minutes + ":" + (seconds < 9 ? '0' : '') + seconds;
2989
+ return Math.floor(this.gameTime / 60);
2992
2990
  },
2993
2991
  enumerable: true,
2994
2992
  configurable: true