-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.ts
680 lines (592 loc) · 25.8 KB
/
index.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
import * as date from "@softwareventures/date";
import {daysInMonth, fromReferenceDays, toReferenceDays} from "@softwareventures/date";
import * as format from "@softwareventures/format-timestamp";
import {
fromReferenceSeconds as timeFromReferenceSeconds,
toReferenceSeconds as timeToReferenceSeconds
} from "@softwareventures/time";
import type {Comparator} from "@softwareventures/ordered";
import {Comparison} from "@softwareventures/ordered";
import {notNull} from "@softwareventures/nullable";
import {hasProperty} from "unknown";
import isInteger = require("is-integer");
import isIntegerInRange from "is-integer-in-range";
import {JsDate} from "./js-date";
/** An instant in time, represented as a date and time in the Gregorian
* Calendar, UTC. */
export interface Timestamp {
/** Type discriminator identifying the object as a `Timestamp`. */
readonly type: "Timestamp";
/** The year.
*
* Should be an integer.
*
* Positive values represent years in the Common Era (CE/AD). For example,
* `2021` represents 2021 CE, the year this module was first published to
* npm.
*
* Negative values or zero represent years before the Common Era (BCE/BC).
* Zero represents 1 BCE, `-1` represents 2 BCE, `-2` represents 3 BCE, and
* so on.
*
* Note that there is no year zero in the Gregorian Calendar. The year 1
* BCE was immediately followed by 1 CE. */
readonly year: number;
/** The month of the year. Should be an integer in the range `1`-`12`. */
readonly month: number;
/** The day of the month. Should be an integer in the range `1`-`31`. */
readonly day: number;
/** The hours component of the time of day. Should be an integer in the
* range `0`-`23`. */
readonly hours: number;
/** The minutes component of the time of day. Should be an integer in the
* range `0`-`59`. */
readonly minutes: number;
/** The seconds component of the time of day. Should be in the range `0`-`60`,
* inclusive of `0` but exclusive of `60`. May be fractional to represent an
* instant in time with sub-second accuracy. */
readonly seconds: number;
}
/** Options for creating a `Timestamp`.
*
* An instance of {@link Timestamp} may always be used in place of
* `TimestampOptions`. */
export interface TimestampOptions {
/** Type discriminator identifying the object as a `Timestamp`.
*
* If specified, must be the string `"Timestamp"`. This is to prevent errors
* caused by a `Timestamp` being accidentally passed to functions that
* operate on other types. */
readonly type?: "Timestamp";
/** The year.
*
* Should be an integer.
*
* Positive values represent years in the Common Era (CE/AD). For example,
* `2021` represents 2021 CE, the year this module was first published to
* npm.
*
* Negative values or zero represent years before the Common Era (BCE/BC).
* Zero represents 1 BCE, `-1` represents 2 BCE, `-2` represents 3 BCE, and
* so on.
*
* Note that there is no year zero in the Gregorian Calendar. The year 1
* BCE was immediately followed by 1 CE. */
readonly year: number;
/** The month of the year. Should be an integer in the range `1`-`12`. */
readonly month: number;
/** The day of the month. Should be an integer in the range `1`-`31`. */
readonly day: number;
/** The hours component of the time of day. Should be an integer in the
* range `0`-`23`. */
readonly hours: number;
/** The minutes component of the time of day. Should be an integer in the
* range `0`-`59`.
*
* @default 0 */
readonly minutes?: number;
/** The seconds component of the time of day. Should be in the range `0`-`60`,
* inclusive of `0` but exclusive of `60`. May be fractional to represent an
* instant in time with sub-second accuracy.
*
* @default 0 */
readonly seconds?: number;
}
/** The numeric representation of the month of January. */
export const JANUARY = date.JANUARY; // eslint-disable-line @typescript-eslint/naming-convention
/** The numeric representation of the month of February. */
export const FEBRUARY = date.FEBRUARY; // eslint-disable-line @typescript-eslint/naming-convention
/** The numeric representation of the month of March. */
export const MARCH = date.MARCH; // eslint-disable-line @typescript-eslint/naming-convention
/** The numeric representation of the month of April. */
export const APRIL = date.APRIL; // eslint-disable-line @typescript-eslint/naming-convention
/** The numeric representation of the month of May. */
export const MAY = date.MAY; // eslint-disable-line @typescript-eslint/naming-convention
/** The numeric representation of the month of June. */
export const JUNE = date.JUNE; // eslint-disable-line @typescript-eslint/naming-convention
/** The numeric representation of the month of July. */
export const JULY = date.JULY; // eslint-disable-line @typescript-eslint/naming-convention
/** The numeric representation of the month of August. */
export const AUGUST = date.AUGUST; // eslint-disable-line @typescript-eslint/naming-convention
/** The numeric representation of the month of September. */
export const SEPTEMBER = date.SEPTEMBER; // eslint-disable-line @typescript-eslint/naming-convention
/** The numeric representation of the month of October. */
export const OCTOBER = date.OCTOBER; // eslint-disable-line @typescript-eslint/naming-convention
/** The numeric representation of the month of November. */
export const NOVEMBER = date.NOVEMBER; // eslint-disable-line @typescript-eslint/naming-convention
/** The numeric representation of the month of December. */
export const DECEMBER = date.DECEMBER; // eslint-disable-line @typescript-eslint/naming-convention
/** Returns `true` if the specified value has the shape of a {@link Timestamp}
* object.
*
* The `year`, `month`, `day`, `hours`, and `minutes` fields may be
* non-integers or outside the valid range, meaning that the object may not
* represent a valid timestamp.
*
* The `seconds` field may be non-finite, meaning that the object may not
* represent a valid timestamp. */
export function isTimestamp(value: unknown): value is Timestamp {
return (
typeof value === "object" &&
value != null &&
hasProperty(value, "type") &&
value.type === "timestamp" &&
hasProperty(value, "year") &&
typeof value.year === "number" &&
hasProperty(value, "month") &&
typeof value.month === "number" &&
hasProperty(value, "day") &&
typeof value.day === "number" &&
hasProperty(value, "hours") &&
typeof value.hours === "number" &&
hasProperty(value, "minutes") &&
typeof value.minutes === "number" &&
hasProperty(value, "seconds") &&
typeof value.seconds === "number"
);
}
/** Tests if the specified value is a {@link Timestamp} object representing a
* valid timestamp.
*
* Returns `true` if the value has the shape of a `Timestamp` object, the
* `year`, `month`, `day`, `hours` and `minutes` fields are all integers inside
* the valid range, and the `seconds` field is a finite number inside the valid
* range.
*
* {@link Timestamp}s returned by functions in this library are always valid. */
export function isValidTimestamp(value: unknown): value is Timestamp {
return isTimestamp(value) && isValid(value);
}
/** Tests if the specified {@link Timestamp} object represents a valid
* timestamp.
*
* Returns `true` if the `year`, `month`, `day`, `hour`, and `minute` fields
* are all integers inside the valid range, and the `seconds` field is a finite
* number inside the valid range.
*
* {@link Timestamp}s returned by functions in this library are always valid. */
export function isValid(timestamp: TimestampOptions): boolean {
return (
(!hasProperty(timestamp, "type") || timestamp.type === "Timestamp") &&
isInteger(timestamp.year) &&
isIntegerInRange(timestamp.month, JANUARY, DECEMBER) &&
isIntegerInRange(timestamp.day, 1, daysInMonth(timestamp.month, timestamp.year)) &&
isIntegerInRange(timestamp.hours, 0, 23) &&
isIntegerInRange(timestamp.minutes ?? 0, 0, 59) &&
(timestamp.seconds ?? 0) >= 0 &&
(timestamp.seconds ?? 0) < 60
);
}
/** Tests if the specified {@link Timestamp} object represents a valid
* timestamp.
*
* Returns `true` if the `year`, `month`, `day`, `hour`, and `minute` fields
* are all integers inside the valid range, and the `seconds` field is a finite
* number inside the valid range.
*
* Alias of {@link isValid}, useful for disambiguation from similar functions
* that operate on other types.
*
* {@link Timestamp}s returned by functions in this library are always valid. */
export const isTimestampValid = isValid;
/** Asserts that the specified {@link Timestamp} object represents a valid
* timestamp.
*
* {@link Timestamp}s returned by functions in this library are always valid.
*
* @throws {Error} if any of the `year`, `month`, `day`, `hours`, or `minutes`
* fields are non-integers or outside the valid range, or if the `seconds`
* field is non-finite or outside the valid range. */
export function validate(timestamp: TimestampOptions): void {
if (!isValid(timestamp)) {
throw new Error("Invalid timestamp");
}
}
/** Asserts that the specified {@link Timestamp} object represents a valid
* timestamp.
*
* {@link Timestamp}s returned by functions in this library are always valid.
*
* Alias of {@link validate}, useful for disambiguation from similar functions
* that operate on other types.
*
* @throws {Error} if any of the `year`, `month`, `day`, `hours`, or `minutes`
* fields are non-integers or outside the valid range, or if the `seconds`
* field is non-finite or outside the valid range. */
export const validateTimestamp = validate;
/** Constructs a normalized {@link Timestamp} object from the specified options.
*
* If the `month`, `day`, `hour`, `minute` or `seconds` fields are outside the
* valid range, then they will roll over into the next minute, hours, day,
* month or year.
*
* @throws {Error} if any of the numeric fields are non-finite. */
export function timestamp(options: TimestampOptions): Timestamp {
return fromReferenceSeconds(toReferenceSeconds(options));
}
export function fromJsDate(date: JsDate): Timestamp {
return timestamp({
year: date.getUTCFullYear(),
month: date.getUTCMonth() + 1,
day: date.getUTCDate(),
hours: date.getUTCHours(),
minutes: date.getUTCMinutes(),
seconds: date.getUTCSeconds() + date.getUTCMilliseconds() / 1000
});
}
export function timestampFromJsDate(date: JsDate): Timestamp {
return fromJsDate(date);
}
/** Normalizes the specified {@link Timestamp} object so that it represents a
* valid timestamp.
*
* If the `month`, `day`, `hour`, `minute` or `seconds` fields are outside the
* valid range, then they will roll over into the next minute, hours, day,
* month or year.
*
* Alias of {@link timestamp}. Calling the function by this name instead might
* make code clearer in cases where the purpose is to normalize an existing
* `Timestamp` object.
*
* @throws {Error} if any of the numeric fields are non-finite. */
export const normalize = timestamp;
/** Normalizes the specified {@link Timestamp} object so that it represents a
* valid timestamp.
*
* If the `month`, `day`, `hour`, `minute` or `seconds` fields are outside the
* valid range, then they will roll over into the next minute, hours, day,
* month or year.
*
* Alias of {@link timestamp}. Calling the function by this name instead might
* make code clearer in cases where the purpose is to normalize an existing
* `Timestamp` object.
*
* @throws {Error} if any of the numeric fields are non-finite. */
export const normalizeTimestamp = timestamp;
/** Converts the specified {@link Timestamp} to a count of seconds since the
* reference Timestamp of midnight on the morning of 1st January, 1 CE. */
export function toReferenceSeconds(timestamp: TimestampOptions): number {
const year = timestamp.year ?? 1;
const month = timestamp.month ?? 1;
const day = timestamp.day ?? 1;
const hours = timestamp.hours ?? 0;
const minutes = timestamp.minutes ?? 0;
const seconds = timestamp.seconds ?? 0;
return (
toReferenceDays({year, month, day}) * 86400 +
timeToReferenceSeconds({hours, minutes, seconds})
);
}
/** Converts the specified {@link Timestamp} to a count of seconds since
* the reference timestamp of midnight on the morning of 1st January, 1 CE.
*
* Alias of {@link toReferenceSeconds}, useful for disambiguation from similar
* functions that operate on other types. */
export const timestampToReferenceSeconds = toReferenceSeconds;
/** Creates a {@link Timestamp} corresponding to the specified count of seconds
* since the reference Timestamp of midnight on the morning of 1st January,
* 1 CE.
*
* @throws {Error} if `referenceSeconds` is non-finite. */
export function fromReferenceSeconds(referenceSeconds: number): Timestamp {
if (!isFinite(referenceSeconds)) {
throw new Error("Invalid timestamp");
}
const referenceDays = Math.floor(referenceSeconds / 86400);
const {year, month, day} = fromReferenceDays(referenceDays);
const {hours, minutes, seconds} = timeFromReferenceSeconds(
referenceSeconds - referenceDays * 86400
);
return {type: "Timestamp", year, month, day, hours, minutes, seconds};
}
/** Creates a {@link Timestamp} corresponding to the specified count of seconds
* since the reference Timestamp of midnight on the morning of 1st January,
* 1 CE.
*
* Alias of {@link fromReferenceSeconds}, useful for disambiguation from
* similar functions that operate on other types.
*
* @throws {Error} if `referenceSeconds` is non-finite. */
export const timestampFromReferenceSeconds = fromReferenceSeconds;
/** Returns `true` if `a` and `b` refer to the same timestamp. */
export function equal(a: TimestampOptions, b: TimestampOptions): boolean {
return toReferenceSeconds(a) === toReferenceSeconds(b);
}
/** Returns `true` if `a` and `b` refer to the same timestamp.
*
* Alias of {@link equal}, for disambiguation from other equality functions. */
export const timestampsEqual = equal;
/** Returns `true` if `a` and `b` refer to the same timestamp.
*
* Curried variant of {@link equal}. */
export function equalFn(b: TimestampOptions): (a: TimestampOptions) => boolean {
return a => equal(a, b);
}
/** Returns `true` if `a` and `b` refer to the same timestamp.
*
* Curried variant of {@link timestampsEqual}. */
export const timestampsEqualFn = equalFn;
/** Returns `true` if `a` and `b` refer to a different timestamp. */
export function notEqual(a: TimestampOptions, b: TimestampOptions): boolean {
return toReferenceSeconds(a) !== toReferenceSeconds(b);
}
/** Returns `true` if `a` and `b` refer to a different timestamp.
*
* Alias of {@link notEqual}, for disambiguation from other inequality
* functions. */
export const timestampsNotEqual = notEqual;
/** Returns `true` if `a` and `b` refer to a different timestamp.
*
* Curried variant of {@link notEqual}. */
export function notEqualFn(b: TimestampOptions): (a: TimestampOptions) => boolean {
return a => notEqual(a, b);
}
/** Returns `true` if `a` and `b` refer to a different timestamp.
*
* Curried variant of {@link timestampsNotEqual}. */
export const timestampsNotEqualFn = notEqualFn;
/** Compares two {@link Timestamp}s and returns a {@link Comparison} specifying
* if `a` is before, equal to, or after `b`. */
export const compare: Comparator<TimestampOptions> = (a, b) => {
const as = toReferenceSeconds(a);
const bs = toReferenceSeconds(b);
if (as < bs) {
return Comparison.before;
} else if (as > bs) {
return Comparison.after;
} else if (as === bs) {
return Comparison.equal;
} else {
return Comparison.undefined;
}
};
/** Compares two {@link Timestamp}s and returns a {@link Comparison} specifying
* if `a` is before, equal to, or after `b`.
*
* Alias of {@link compare}, useful for disambiguation from other comparison
* functions. */
export const compareTimestamps = compare;
/** Compares two {@link Timestamp}s and returns a {@link Comparison} specifying
* if `a` is before, equal to, or after `b`.
*
* Curried variant of {@link compare}. */
export function compareFn(b: TimestampOptions): (a: TimestampOptions) => Comparison {
return a => compare(a, b);
}
/** Compares two {@link Timestamp}s and returns a {@link Comparison} specifying
* if `a` is before, equal to, or after `b`.
*
* Curried variant of {@link compareTimestamps}. */
export const compareTimestampsFn = compareFn;
/** Returns `true` if `a` refers to a timestamp before `b`. */
export function before(a: TimestampOptions, b: TimestampOptions): boolean {
return toReferenceSeconds(a) < toReferenceSeconds(b);
}
/** Returns `true` if `a` refers to a timestamp before `b`.
*
* Alias of {@link before}, useful for disambiguation from similar functions
* that operate on other date/time types. */
export const timestampBefore = before;
/** Returns `true` if `a` refers to a date and time before `b`.
*
* Curried variant of {@link before}. */
export function beforeFn(b: TimestampOptions): (a: TimestampOptions) => boolean {
return a => before(a, b);
}
/** Returns `true` if `a` refers to a timestamp before `b`.
*
* Curried variant of {@link timestampBefore}. */
export const timestampBeforeFn = beforeFn;
/** Returns `true` if `a` refers to a timestamp before or the same as `b`. */
export function beforeOrEqual(a: TimestampOptions, b: TimestampOptions): boolean {
return toReferenceSeconds(a) <= toReferenceSeconds(b);
}
/** Returns `true` if `a` refers to a timestamp before or the same as `b`.
*
* Alias of {@link beforeOrEqual}, useful for disambiguation from similar
* functions that operate on other date/time types. */
export const timestampBeforeOrEqual = beforeOrEqual;
/** Returns `true` if `a` refers to a timestamp before or the same as `b`.
*
* Curried variant of {@link beforeOrEqual}. */
export function beforeOrEqualFn(b: TimestampOptions): (a: TimestampOptions) => boolean {
return a => beforeOrEqual(a, b);
}
/** Returns `true` if `a` refers to a timestamp before or the same as `b`.
*
* Curried variant of {@link timestampBeforeOrEqual}. */
export const timestampBeforeOrEqualFn = beforeOrEqualFn;
/** Returns `true` if `a` refers to a timestamp after `b`. */
export function after(a: TimestampOptions, b: TimestampOptions): boolean {
return toReferenceSeconds(a) > toReferenceSeconds(b);
}
/** Returns `true` if `a` refers to a timestamp after `b`.
*
* Alias of {@link after}, useful for disambiguation from similar functions
* that operate on other date/time types. */
export const timestampAfter = after;
/** Returns `true` if `a` refers to a date and time after `b`.
*
* Curried variant of {@link after}. */
export function afterFn(b: TimestampOptions): (a: TimestampOptions) => boolean {
return a => after(a, b);
}
/** Returns `true` if `a` refers to a timestamp after `b`.
*
* Curried variant of {@link timestampAfter}. */
export const timestampAfterFn = afterFn;
/** Returns `true` if `a` refers to a timestamp after or the same as `b`. */
export function afterOrEqual(a: TimestampOptions, b: TimestampOptions): boolean {
return toReferenceSeconds(a) >= toReferenceSeconds(b);
}
/** Returns `true` if `a` refers to a timestamp after or the same as `b`.
*
* Alias of {@link afterOrEqual}, useful for disambiguation from similar
* functions that operate on other date/time types. */
export const timestampAfterOrEqual = afterOrEqual;
/** Returns `true` if `a` refers to a timestamp after or the same as `b`.
*
* Curried variant of {@link afterOrEqual}. */
export function afterOrEqualFn(b: TimestampOptions): (a: TimestampOptions) => boolean {
return a => afterOrEqual(a, b);
}
/** Returns `true` if `a` refers to a timestamp after or the same as `b`.
*
* Curried variant of {@link timestampAfterOrEqual}. */
export const timestampAfterOrEqualFn = afterOrEqualFn;
/** Compares two {@link Timestamp}s and returns the earlier of the two.
*
* @throws {Error} if both specified `Timestamp`s contain numeric fields that
* are non-finite. */
export function earliest(a: TimestampOptions, b: TimestampOptions): Timestamp {
const as = toReferenceSeconds(a);
const bs = toReferenceSeconds(b);
return fromReferenceSeconds(as < bs ? as : bs);
}
/** Compares two {@link Timestamp}s and returns the earlier of the two.
*
* Alias of {@link earliest}, useful for disambiguation from similar functions
* that operate on other date/time types.
*
* @throws {Error} if both specified `Timestamp`s contain numeric fields that
* are non-finite. */
export const earliestTimestamp = earliest;
/** Compares two {@link Timestamp}s and returns the earlier of the two.
*
* Curried variant of {@link earliest}.
*
* @throws {Error} if both specified `Timestamp`s contain numeric fields that
* are non-finite. */
export function earliestFn(b: TimestampOptions): (a: TimestampOptions) => Timestamp {
return a => earliest(a, b);
}
/** Compares two {@link Timestamp}s and returns the earlier of the two.
*
* Curried variant of {@link earliestTimestamp}.
*
* @throws {Error} if both specified `Timestamp`s contain numeric fields that
* are non-finite. */
export const earliestTimestampFn = earliestFn;
/** Compares two {@link Timestamp}s and returns the later of the two.
*
* @throws {Error} if both specified `Timestamp`s contain numeric fields that
* are non-finite. */
export function latest(a: TimestampOptions, b: TimestampOptions): Timestamp {
const as = toReferenceSeconds(a);
const bs = toReferenceSeconds(b);
return fromReferenceSeconds(as > bs ? as : bs);
}
/** Compares two {@link Timestamp}s and returns the later of the two.
*
* Alias of {@link latest}, useful for disambiguation from similar functions
* that operate on other date/time types.
*
* @throws {Error} if both specified `Timestamp`s contain numeric fields that
* are non-finite. */
export const latestTimestamp = latest;
/** Returns the latest of the specified {@link Timestamp}s.
*
* @throws {Error} if both specified `Timestamp`s contain numeric fields that
* are non-finite. */
export function latestFn(b: TimestampOptions): (a: TimestampOptions) => Timestamp {
return a => latest(a, b);
}
/** Compares two {@link Timestamp}s and returns the later of the two.
*
* Curried variant of {@link latestTimestamp}.
*
* @throws {Error} if both specified `Timestamp`s contain numeric fields that
* are non-finite. */
export const latestTimestampFn = latestFn;
/** Creates a {@link Timestamp} of the current time and date. */
export function now(): Timestamp {
return fromJsDate(new JsDate());
}
/** Creates a {@link Timestamp} of the current time and date.
*
* Alias of {@link now}, useful for disambiguation from similar functions that
* operate on other date/time types. */
export const timestampNow = now;
/** Parses a {@link Timestamp} from text in ISO 8601 format.
*
* The ISO 8601 text must specify a time zone offset, which should usually be
* `Z` for UTC. If any other offset is specified then the date and time will
* be converted to and stored as UTC.
*
* If the specified text is not a valid ISO 8601 date-time then this function
* returns `null`.
*
* Both extended `YYYY-MM-DDTHH:MM:SS.ssss+hh:mm` and basic
* `YYYYMMDDTHHMMSS.ssss+hhmm` ISO 8601 formats are accepted.
*
* As an exception to ISO8601, the `"T"` delimiter between the date and time
* may be replaced by any sequence of whitespace characters. */
export function parseIso8601(text: string): Timestamp | null {
const match =
/^([+-]?\d{4,})-?(\d{2})-?(\d{2})(?:T|\s+)(\d{2}):?(\d{2}):?(\d{2}(?:[.,]?\d+)?)(?:Z|([+-][0-9]{2}):?([0-9]{2}))$/iu.exec(
text
);
if (match == null) {
return null;
}
const offsetHours = match[7] == null ? 0 : parseInt(match[7], 10);
const offsetMinutes = match[8] == null ? 0 : parseInt(match[8], 10) * Math.sign(offsetHours);
const year = parseInt(notNull(match[1]), 10);
const month = parseInt(notNull(match[2]), 10);
const day = parseInt(notNull(match[3]), 10);
const hours = parseInt(notNull(match[4]), 10) - offsetHours;
const minutes = parseInt(notNull(match[5]), 10) - offsetMinutes;
const seconds = parseFloat(notNull(match[6]).replace(",", "."));
return timestamp({year, month, day, hours, minutes, seconds});
}
/** Parses a {@link Timestamp} from text in ISO 8601 format.
*
* The ISO 8601 text must specify a time zone offset, which should usually be
* `Z` for UTC. If any other offset is specified then the date and time will
* be converted to and stored as UTC.
*
* If the specified text is not a valid ISO 8601 date-time then this function
* returns `null`.
*
* Both extended `YYYY-MM-DDTHH:MM:SS.ssss+hh:mm` and basic
* `YYYYMMDDTHHMMSS.ssss+hhmm` ISO 8601 formats are accepted.
*
* As an exception to ISO8601, the `"T"` delimiter between the date and time
* may be replaced by any sequence of whitespace characters.
*
* Alias of {@link parseIso8601}, useful for disambiguation from similar
* functions that operate on other date/time types.*/
export const parseTimestampIso8601 = parseIso8601;
/** Formats the specified {@link Timestamp} as IS0 8601 extended, rounded down
* to the next lower second e.g. `2021-05-01T11:57:23Z`.
*
* For other formats, see @softwareventures/format-timestamp. */
export const formatIso8601 = format.iso8601;
/** Formats the specified {@link Timestamp} as IS0 8601 extended, rounded down
* to the next lower second e.g. `2021-05-01T11:57:23Z`.
*
* Alias of {@link formatIso8601}, useful for disambiguation from similar
* functions that operate on other date/time types.
*
* For other formats, see @softwareventures/format-timestamp. */
export const formatTimestampIso8601 = format.iso8601;