UNPKG

@arizeai/phoenix-client

Version:

A client for the Phoenix API

7 lines 189 B
/** * A type guard for checking if a value is an object */ export function isObject(value) { return typeof value === "object" && value !== null; } //# sourceMappingURL=isObject.js.map