ts-time-utils 3.0.0 → 4.0.1
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/README.md +401 -1329
- package/dist/calculate.d.ts +25 -0
- package/dist/calculate.d.ts.map +1 -1
- package/dist/calculate.js +125 -0
- package/dist/calendar.d.ts +45 -0
- package/dist/calendar.d.ts.map +1 -1
- package/dist/calendar.js +68 -0
- package/dist/calendars.d.ts +156 -0
- package/dist/calendars.d.ts.map +1 -0
- package/dist/calendars.js +348 -0
- package/dist/compare.d.ts +27 -0
- package/dist/compare.d.ts.map +1 -1
- package/dist/compare.js +46 -0
- package/dist/esm/calculate.d.ts +25 -0
- package/dist/esm/calculate.d.ts.map +1 -1
- package/dist/esm/calculate.js +125 -0
- package/dist/esm/calendar.d.ts +45 -0
- package/dist/esm/calendar.d.ts.map +1 -1
- package/dist/esm/calendar.js +68 -0
- package/dist/esm/calendars.d.ts +156 -0
- package/dist/esm/calendars.d.ts.map +1 -0
- package/dist/esm/calendars.js +348 -0
- package/dist/esm/compare.d.ts +27 -0
- package/dist/esm/compare.d.ts.map +1 -1
- package/dist/esm/compare.js +46 -0
- package/dist/esm/holidays.d.ts +11 -1
- package/dist/esm/holidays.d.ts.map +1 -1
- package/dist/esm/holidays.js +220 -1
- package/dist/esm/index.d.ts +13 -7
- package/dist/esm/index.d.ts.map +1 -1
- package/dist/esm/index.js +17 -9
- package/dist/esm/iterate.d.ts +55 -0
- package/dist/esm/iterate.d.ts.map +1 -1
- package/dist/esm/iterate.js +86 -0
- package/dist/esm/locale.d.ts +53 -0
- package/dist/esm/locale.d.ts.map +1 -1
- package/dist/esm/locale.js +141 -0
- package/dist/esm/precision.d.ts +225 -0
- package/dist/esm/precision.d.ts.map +1 -0
- package/dist/esm/precision.js +491 -0
- package/dist/esm/temporal.d.ts +237 -0
- package/dist/esm/temporal.d.ts.map +1 -0
- package/dist/esm/temporal.js +660 -0
- package/dist/esm/validate.d.ts +30 -0
- package/dist/esm/validate.d.ts.map +1 -1
- package/dist/esm/validate.js +48 -0
- package/dist/holidays.d.ts +11 -1
- package/dist/holidays.d.ts.map +1 -1
- package/dist/holidays.js +220 -1
- package/dist/index.d.ts +13 -7
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +17 -9
- package/dist/iterate.d.ts +55 -0
- package/dist/iterate.d.ts.map +1 -1
- package/dist/iterate.js +86 -0
- package/dist/locale.d.ts +53 -0
- package/dist/locale.d.ts.map +1 -1
- package/dist/locale.js +141 -0
- package/dist/precision.d.ts +225 -0
- package/dist/precision.d.ts.map +1 -0
- package/dist/precision.js +491 -0
- package/dist/temporal.d.ts +237 -0
- package/dist/temporal.d.ts.map +1 -0
- package/dist/temporal.js +660 -0
- package/dist/validate.d.ts +30 -0
- package/dist/validate.d.ts.map +1 -1
- package/dist/validate.js +48 -0
- package/package.json +22 -2
|
@@ -0,0 +1,237 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @fileoverview Temporal API compatibility layer
|
|
3
|
+
* Provides Temporal-like objects that work with native Date
|
|
4
|
+
* When Temporal ships natively, these become thin wrappers
|
|
5
|
+
*/
|
|
6
|
+
/**
|
|
7
|
+
* PlainDate - A date without time or timezone
|
|
8
|
+
* Mirrors Temporal.PlainDate
|
|
9
|
+
*/
|
|
10
|
+
export interface PlainDate {
|
|
11
|
+
readonly year: number;
|
|
12
|
+
readonly month: number;
|
|
13
|
+
readonly day: number;
|
|
14
|
+
readonly dayOfWeek: number;
|
|
15
|
+
readonly dayOfYear: number;
|
|
16
|
+
readonly weekOfYear: number;
|
|
17
|
+
readonly daysInMonth: number;
|
|
18
|
+
readonly daysInYear: number;
|
|
19
|
+
readonly monthsInYear: number;
|
|
20
|
+
readonly inLeapYear: boolean;
|
|
21
|
+
toString(): string;
|
|
22
|
+
toJSON(): string;
|
|
23
|
+
equals(other: PlainDate): boolean;
|
|
24
|
+
compare(other: PlainDate): number;
|
|
25
|
+
add(duration: DurationLike): PlainDate;
|
|
26
|
+
subtract(duration: DurationLike): PlainDate;
|
|
27
|
+
until(other: PlainDate): Duration;
|
|
28
|
+
since(other: PlainDate): Duration;
|
|
29
|
+
with(fields: Partial<{
|
|
30
|
+
year: number;
|
|
31
|
+
month: number;
|
|
32
|
+
day: number;
|
|
33
|
+
}>): PlainDate;
|
|
34
|
+
toDate(): Date;
|
|
35
|
+
}
|
|
36
|
+
/**
|
|
37
|
+
* PlainTime - A time without date or timezone
|
|
38
|
+
* Mirrors Temporal.PlainTime
|
|
39
|
+
*/
|
|
40
|
+
export interface PlainTime {
|
|
41
|
+
readonly hour: number;
|
|
42
|
+
readonly minute: number;
|
|
43
|
+
readonly second: number;
|
|
44
|
+
readonly millisecond: number;
|
|
45
|
+
toString(): string;
|
|
46
|
+
toJSON(): string;
|
|
47
|
+
equals(other: PlainTime): boolean;
|
|
48
|
+
compare(other: PlainTime): number;
|
|
49
|
+
add(duration: DurationLike): PlainTime;
|
|
50
|
+
subtract(duration: DurationLike): PlainTime;
|
|
51
|
+
with(fields: Partial<{
|
|
52
|
+
hour: number;
|
|
53
|
+
minute: number;
|
|
54
|
+
second: number;
|
|
55
|
+
millisecond: number;
|
|
56
|
+
}>): PlainTime;
|
|
57
|
+
}
|
|
58
|
+
/**
|
|
59
|
+
* PlainDateTime - A date and time without timezone
|
|
60
|
+
* Mirrors Temporal.PlainDateTime
|
|
61
|
+
*/
|
|
62
|
+
export interface PlainDateTime {
|
|
63
|
+
readonly year: number;
|
|
64
|
+
readonly month: number;
|
|
65
|
+
readonly day: number;
|
|
66
|
+
readonly hour: number;
|
|
67
|
+
readonly minute: number;
|
|
68
|
+
readonly second: number;
|
|
69
|
+
readonly millisecond: number;
|
|
70
|
+
readonly dayOfWeek: number;
|
|
71
|
+
readonly dayOfYear: number;
|
|
72
|
+
readonly weekOfYear: number;
|
|
73
|
+
toString(): string;
|
|
74
|
+
toJSON(): string;
|
|
75
|
+
equals(other: PlainDateTime): boolean;
|
|
76
|
+
compare(other: PlainDateTime): number;
|
|
77
|
+
add(duration: DurationLike): PlainDateTime;
|
|
78
|
+
subtract(duration: DurationLike): PlainDateTime;
|
|
79
|
+
until(other: PlainDateTime): Duration;
|
|
80
|
+
since(other: PlainDateTime): Duration;
|
|
81
|
+
with(fields: Partial<{
|
|
82
|
+
year: number;
|
|
83
|
+
month: number;
|
|
84
|
+
day: number;
|
|
85
|
+
hour: number;
|
|
86
|
+
minute: number;
|
|
87
|
+
second: number;
|
|
88
|
+
millisecond: number;
|
|
89
|
+
}>): PlainDateTime;
|
|
90
|
+
toPlainDate(): PlainDate;
|
|
91
|
+
toPlainTime(): PlainTime;
|
|
92
|
+
toDate(): Date;
|
|
93
|
+
}
|
|
94
|
+
/**
|
|
95
|
+
* ZonedDateTime - A date and time with timezone
|
|
96
|
+
* Mirrors Temporal.ZonedDateTime
|
|
97
|
+
*/
|
|
98
|
+
export interface ZonedDateTime {
|
|
99
|
+
readonly year: number;
|
|
100
|
+
readonly month: number;
|
|
101
|
+
readonly day: number;
|
|
102
|
+
readonly hour: number;
|
|
103
|
+
readonly minute: number;
|
|
104
|
+
readonly second: number;
|
|
105
|
+
readonly millisecond: number;
|
|
106
|
+
readonly timeZone: string;
|
|
107
|
+
readonly offset: string;
|
|
108
|
+
readonly epochMilliseconds: number;
|
|
109
|
+
toString(): string;
|
|
110
|
+
toJSON(): string;
|
|
111
|
+
equals(other: ZonedDateTime): boolean;
|
|
112
|
+
add(duration: DurationLike): ZonedDateTime;
|
|
113
|
+
subtract(duration: DurationLike): ZonedDateTime;
|
|
114
|
+
with(fields: Partial<{
|
|
115
|
+
year: number;
|
|
116
|
+
month: number;
|
|
117
|
+
day: number;
|
|
118
|
+
hour: number;
|
|
119
|
+
minute: number;
|
|
120
|
+
second: number;
|
|
121
|
+
millisecond: number;
|
|
122
|
+
}>): ZonedDateTime;
|
|
123
|
+
toPlainDate(): PlainDate;
|
|
124
|
+
toPlainTime(): PlainTime;
|
|
125
|
+
toPlainDateTime(): PlainDateTime;
|
|
126
|
+
toInstant(): Instant;
|
|
127
|
+
toDate(): Date;
|
|
128
|
+
}
|
|
129
|
+
/**
|
|
130
|
+
* Instant - A point in time (like Unix timestamp)
|
|
131
|
+
* Mirrors Temporal.Instant
|
|
132
|
+
*/
|
|
133
|
+
export interface Instant {
|
|
134
|
+
readonly epochMilliseconds: number;
|
|
135
|
+
readonly epochSeconds: number;
|
|
136
|
+
toString(): string;
|
|
137
|
+
toJSON(): string;
|
|
138
|
+
equals(other: Instant): boolean;
|
|
139
|
+
compare(other: Instant): number;
|
|
140
|
+
add(duration: DurationLike): Instant;
|
|
141
|
+
subtract(duration: DurationLike): Instant;
|
|
142
|
+
until(other: Instant): Duration;
|
|
143
|
+
since(other: Instant): Duration;
|
|
144
|
+
toZonedDateTime(timeZone: string): ZonedDateTime;
|
|
145
|
+
toDate(): Date;
|
|
146
|
+
}
|
|
147
|
+
/**
|
|
148
|
+
* Duration - A length of time
|
|
149
|
+
* Mirrors Temporal.Duration
|
|
150
|
+
*/
|
|
151
|
+
export interface Duration {
|
|
152
|
+
readonly years: number;
|
|
153
|
+
readonly months: number;
|
|
154
|
+
readonly weeks: number;
|
|
155
|
+
readonly days: number;
|
|
156
|
+
readonly hours: number;
|
|
157
|
+
readonly minutes: number;
|
|
158
|
+
readonly seconds: number;
|
|
159
|
+
readonly milliseconds: number;
|
|
160
|
+
readonly sign: -1 | 0 | 1;
|
|
161
|
+
readonly blank: boolean;
|
|
162
|
+
toString(): string;
|
|
163
|
+
toJSON(): string;
|
|
164
|
+
negated(): Duration;
|
|
165
|
+
abs(): Duration;
|
|
166
|
+
add(other: DurationLike): Duration;
|
|
167
|
+
subtract(other: DurationLike): Duration;
|
|
168
|
+
total(unit: DurationUnit): number;
|
|
169
|
+
}
|
|
170
|
+
export type DurationUnit = 'years' | 'months' | 'weeks' | 'days' | 'hours' | 'minutes' | 'seconds' | 'milliseconds';
|
|
171
|
+
export interface DurationLike {
|
|
172
|
+
years?: number;
|
|
173
|
+
months?: number;
|
|
174
|
+
weeks?: number;
|
|
175
|
+
days?: number;
|
|
176
|
+
hours?: number;
|
|
177
|
+
minutes?: number;
|
|
178
|
+
seconds?: number;
|
|
179
|
+
milliseconds?: number;
|
|
180
|
+
}
|
|
181
|
+
/**
|
|
182
|
+
* Create a PlainDate from a Date object or components
|
|
183
|
+
*/
|
|
184
|
+
export declare function toPlainDate(date: Date): PlainDate;
|
|
185
|
+
export declare function toPlainDate(year: number, month: number, day: number): PlainDate;
|
|
186
|
+
/**
|
|
187
|
+
* Create a PlainTime from a Date object or components
|
|
188
|
+
*/
|
|
189
|
+
export declare function toPlainTime(date: Date): PlainTime;
|
|
190
|
+
export declare function toPlainTime(hour: number, minute?: number, second?: number, millisecond?: number): PlainTime;
|
|
191
|
+
/**
|
|
192
|
+
* Create a PlainDateTime from a Date object or components
|
|
193
|
+
*/
|
|
194
|
+
export declare function toPlainDateTime(date: Date): PlainDateTime;
|
|
195
|
+
export declare function toPlainDateTime(year: number, month: number, day: number, hour?: number, minute?: number, second?: number, millisecond?: number): PlainDateTime;
|
|
196
|
+
/**
|
|
197
|
+
* Create a ZonedDateTime from a Date object and timezone
|
|
198
|
+
*/
|
|
199
|
+
export declare function toZonedDateTime(date: Date, timeZone: string): ZonedDateTime;
|
|
200
|
+
/**
|
|
201
|
+
* Create an Instant from a Date object or epoch milliseconds
|
|
202
|
+
*/
|
|
203
|
+
export declare function toInstant(date: Date): Instant;
|
|
204
|
+
export declare function toInstant(epochMs: number): Instant;
|
|
205
|
+
/**
|
|
206
|
+
* Create a Duration from components
|
|
207
|
+
*/
|
|
208
|
+
export declare function createDuration(fields?: DurationLike): Duration;
|
|
209
|
+
/**
|
|
210
|
+
* Parse an ISO 8601 duration string
|
|
211
|
+
*/
|
|
212
|
+
export declare function parseDuration(str: string): Duration;
|
|
213
|
+
/**
|
|
214
|
+
* Get current instant
|
|
215
|
+
*/
|
|
216
|
+
export declare function nowInstant(): Instant;
|
|
217
|
+
/**
|
|
218
|
+
* Get current PlainDateTime in local timezone
|
|
219
|
+
*/
|
|
220
|
+
export declare function nowPlainDateTime(): PlainDateTime;
|
|
221
|
+
/**
|
|
222
|
+
* Get current PlainDate in local timezone
|
|
223
|
+
*/
|
|
224
|
+
export declare function nowPlainDate(): PlainDate;
|
|
225
|
+
/**
|
|
226
|
+
* Get current PlainTime in local timezone
|
|
227
|
+
*/
|
|
228
|
+
export declare function nowPlainTime(): PlainTime;
|
|
229
|
+
/**
|
|
230
|
+
* Get current ZonedDateTime in specified timezone
|
|
231
|
+
*/
|
|
232
|
+
export declare function nowZonedDateTime(timeZone: string): ZonedDateTime;
|
|
233
|
+
/**
|
|
234
|
+
* Convert Temporal-like object back to Date
|
|
235
|
+
*/
|
|
236
|
+
export declare function fromTemporal(temporal: PlainDate | PlainDateTime | ZonedDateTime | Instant): Date;
|
|
237
|
+
//# sourceMappingURL=temporal.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"temporal.d.ts","sourceRoot":"","sources":["../src/temporal.ts"],"names":[],"mappings":"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"}
|