UNPKG

@arizeai/phoenix-client

Version:

A client for the Phoenix API

10 lines 288 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.isObject = isObject; /** * A type guard for checking if a value is an object */ function isObject(value) { return typeof value === "object" && value !== null; } //# sourceMappingURL=isObject.js.map