@mtgame/core 0.0.20 → 0.0.21

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.
@@ -2351,6 +2351,15 @@ var HockeyGameLog = /** @class */ (function (_super) {
2351
2351
  HockeyGameLogTypes.penalty_shot, HockeyGameLogTypes.match_penalty
2352
2352
  ].indexOf(this.logType) > -1;
2353
2353
  };
2354
+ HockeyGameLog.prototype.isAfter = function (log) {
2355
+ if (this.time === log.time && this.period === log.period) {
2356
+ return this.id > log.id;
2357
+ }
2358
+ if (this.period === log.period) {
2359
+ return this.time > log.time;
2360
+ }
2361
+ return this.period > log.period;
2362
+ };
2354
2363
  HockeyGameLog.toFront = function (value) { };
2355
2364
  HockeyGameLog.toBack = function (value) { };
2356
2365
  __decorate([