From 659e9cdbe6defd54d0f4713bb230e4a156262a2c Mon Sep 17 00:00:00 2001 From: Florian Dold Date: Wed, 2 Sep 2020 12:23:11 +0530 Subject: respect cache header --- packages/taler-wallet-core/src/util/time.ts | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'packages/taler-wallet-core/src/util/time.ts') diff --git a/packages/taler-wallet-core/src/util/time.ts b/packages/taler-wallet-core/src/util/time.ts index ccd75e14b..ff4c1885b 100644 --- a/packages/taler-wallet-core/src/util/time.ts +++ b/packages/taler-wallet-core/src/util/time.ts @@ -46,6 +46,10 @@ export function getTimestampNow(): Timestamp { }; } +export function isTimestampExpired(t: Timestamp) { + return timestampCmp(t, getTimestampNow()) <= 0; +} + export function getDurationRemaining( deadline: Timestamp, now = getTimestampNow(), -- cgit v1.2.3