fable 3.0.81 → 3.0.82

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.
@@ -3321,7 +3321,7 @@ var tmpDateParts=pISOString.split(/\D+/);// Set up a date object with the curren
3321
3321
  var tmpReturnDate=new Date();// Track the number of hours we need to adjust the date by based on the timezone.
3322
3322
  var tmpTimeZoneOffsetInHours=0;// Track the number of minutes we need to adjust the date by based on the timezone.
3323
3323
  var tmpTimeZoneOffsetInMinutes=0;// This fixes an inconsistency with constructing the date programmatically.
3324
- tmpReturnDate.setUTCDate(1);// Manually parse the parts of the string and set each part for the
3324
+ tmpReturnDate.setUTCDate(1);tmpReturnDate.setUTCMonth(1);tmpReturnDate.setUTCHours(0);tmpReturnDate.setUTCMinutes(0);tmpReturnDate.setUTCSeconds(0);tmpReturnDate.setUTCMilliseconds(0);// Manually parse the parts of the string and set each part for the
3325
3325
  // date. Note: Using the UTC versions of these functions is necessary
3326
3326
  // because we're manually adjusting for time zones stored in the
3327
3327
  // string.