@syncfusion/ej2-base 19.3.54 → 19.3.56

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.
@@ -3951,7 +3951,7 @@ var IntlBase;
3951
3951
  if (day < 4) {
3952
3952
  weeknum = Math.floor((daynum + day - 1) / 7) + 1;
3953
3953
  if (weeknum > 52) {
3954
- var nYear = new Date(this.getFullYear() + 1, 0, 1);
3954
+ var nYear = new Date(date.getFullYear() + 1, 0, 1);
3955
3955
  var nday = nYear.getDay();
3956
3956
  nday = nday >= 0 ? nday : nday + 7;
3957
3957
  weeknum = nday < 4 ? 1 : 53;