@mtgame/core 0.0.30 → 0.0.31
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.
- package/bundles/mtgame-core.umd.js +1 -1
- package/bundles/mtgame-core.umd.js.map +1 -1
- package/bundles/mtgame-core.umd.min.js +1 -1
- package/bundles/mtgame-core.umd.min.js.map +1 -1
- package/esm2015/models/hockey-statistic.js +2 -2
- package/esm5/models/hockey-statistic.js +2 -2
- package/fesm2015/mtgame-core.js +1 -1
- package/fesm2015/mtgame-core.js.map +1 -1
- package/fesm5/mtgame-core.js +1 -1
- package/fesm5/mtgame-core.js.map +1 -1
- package/package.json +1 -1
package/fesm5/mtgame-core.js
CHANGED
|
@@ -2577,7 +2577,7 @@ var HockeyStatistic = /** @class */ (function (_super) {
|
|
|
2577
2577
|
Object.defineProperty(HockeyStatistic.prototype, "userMinutes", {
|
|
2578
2578
|
get: function () {
|
|
2579
2579
|
var minutes = Math.floor(this.gameTime / 60);
|
|
2580
|
-
var seconds = this.gameTime - minutes * 60;
|
|
2580
|
+
var seconds = Math.floor(this.gameTime - minutes * 60);
|
|
2581
2581
|
return "" + (minutes < 10 ? 0 : '') + minutes + ":" + (seconds < 10 ? 0 : '') + seconds;
|
|
2582
2582
|
},
|
|
2583
2583
|
enumerable: true,
|