@tempots/ui

makeRelativeTimeMillisSignal() function

Creates a signal that computes the time difference in milliseconds between a target date and a reference date.

Signature:

makeRelativeTimeMillisSignal: (date: Value<Date>, { now, frequency }?: {
    now?: Value<Date>;
    frequency?: number;
}) => import('@tempots/dom').Computed<number>

Parameters

Parameter

Type

Description

date

Value<Date>

The target date to compare

{ now, frequency }

{ now?: Value<Date>; frequency?: number; }

(Optional)

Returns: import('@tempots/dom').Computed<number>

A signal containing the time difference in milliseconds. Negative values indicate past times, positive values indicate future times. The signal will clean up its resources when disposed.