@everyonesoftware/common 12.0.0 → 13.0.0

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.
@@ -4525,6 +4525,9 @@ var LuxonDateTime = class _LuxonDateTime {
4525
4525
  toDateString() {
4526
4526
  return this.dateTime.toISODate();
4527
4527
  }
4528
+ toShortDateString() {
4529
+ return `${this.dateTime.monthShort} ${this.dateTime.day}`;
4530
+ }
4528
4531
  compareTo(dateTime, compareTimes) {
4529
4532
  return DateTime2.compareTo(this, dateTime, compareTimes);
4530
4533
  }