Skip to main content

Logical: Type Check

Test whether the value flowing in on value matches the configured Expected type. Useful for branching on dynamic / heterogenous inputs (e.g. "is this a string or a number?").

Example
Expected type: Number
Input: 42 → Output: true
Input: "42" → Output: false

Parameters

Expected typeREQUIRED

PValue tag the input is compared against (String, Number, Bool, JSON, Date, DateTime, Time, Array, File, …).

Input

ValueREQUIRED
The value to type-check.

Output

Boolean

true if the input's variant equals Expected type, false otherwise.