UNPKG

@arizeai/phoenix-client

Version:

A client for the Phoenix API

7 lines (6 loc) 177 B
/** * A type guard for checking if a value is an object */ export function isObject(value: unknown): value is object { return typeof value === "object" && value !== null; }