@tempots/dom

Computed.is() method

Checks if a value is an instance of Computed.

Signature:

static is<T = unknown>(value: unknown): value is Computed<T>;

Parameters

Parameter

Type

Description

value

unknown

The value to check.

Returns: value is Computed<T>

true if the value is an instance of Computed, false otherwise.