@naturalcycles/js-lib 14.122.1 → 14.123.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.
- package/dist/datetime/localDate.d.ts +1 -1
- package/dist/datetime/localDate.js +3 -0
- package/dist/datetime/localTime.d.ts +1 -1
- package/dist/datetime/localTime.js +3 -0
- package/dist-esm/datetime/localDate.js +3 -0
- package/dist-esm/datetime/localTime.js +3 -0
- package/package.json +1 -1
- package/src/datetime/localDate.ts +5 -1
- package/src/datetime/localTime.ts +5 -1
|
@@ -91,7 +91,7 @@ export declare class LocalDate {
|
|
|
91
91
|
unix(): UnixTimestampNumber;
|
|
92
92
|
unixMillis(): UnixTimestampMillisNumber;
|
|
93
93
|
toJSON(): IsoDateString;
|
|
94
|
-
format(fmt: LocalDateFormatter): string;
|
|
94
|
+
format(fmt: Intl.DateTimeFormat | LocalDateFormatter): string;
|
|
95
95
|
}
|
|
96
96
|
/**
|
|
97
97
|
* Shortcut wrapper around `LocalDate.parse` / `LocalDate.today`
|
|
@@ -120,7 +120,7 @@ export declare class LocalTime {
|
|
|
120
120
|
toStringCompact(seconds?: boolean): string;
|
|
121
121
|
toString(): string;
|
|
122
122
|
toJSON(): UnixTimestampNumber;
|
|
123
|
-
format(fmt: LocalTimeFormatter): string;
|
|
123
|
+
format(fmt: Intl.DateTimeFormat | LocalTimeFormatter): string;
|
|
124
124
|
}
|
|
125
125
|
/**
|
|
126
126
|
* Shortcut wrapper around `LocalDate.parse` / `LocalDate.today`
|
package/package.json
CHANGED
|
@@ -492,7 +492,11 @@ export class LocalDate {
|
|
|
492
492
|
return this.toString()
|
|
493
493
|
}
|
|
494
494
|
|
|
495
|
-
format(fmt: LocalDateFormatter): string {
|
|
495
|
+
format(fmt: Intl.DateTimeFormat | LocalDateFormatter): string {
|
|
496
|
+
if (fmt instanceof Intl.DateTimeFormat) {
|
|
497
|
+
return fmt.format(this.toDate())
|
|
498
|
+
}
|
|
499
|
+
|
|
496
500
|
return fmt(this)
|
|
497
501
|
}
|
|
498
502
|
}
|
|
@@ -590,7 +590,11 @@ export class LocalTime {
|
|
|
590
590
|
return this.unix()
|
|
591
591
|
}
|
|
592
592
|
|
|
593
|
-
format(fmt: LocalTimeFormatter): string {
|
|
593
|
+
format(fmt: Intl.DateTimeFormat | LocalTimeFormatter): string {
|
|
594
|
+
if (fmt instanceof Intl.DateTimeFormat) {
|
|
595
|
+
return fmt.format(this.$date)
|
|
596
|
+
}
|
|
597
|
+
|
|
594
598
|
return fmt(this)
|
|
595
599
|
}
|
|
596
600
|
}
|