UNPKG

langsmith

Version:

Client library to connect to the LangSmith Observability and Evaluation Platform.

11 lines (10 loc) 347 B
/** * Checks if `value` is a property name and not a property path. * * @private * @param {*} value The value to check. * @param {Object} [object] The object to query keys on. * @returns {boolean} Returns `true` if `value` is a property name, else `false`. */ declare function isKey(value: any, object: any): boolean; export default isKey;