UNPKG

langsmith

Version:

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

17 lines (16 loc) 399 B
// @ts-nocheck const toString = Object.prototype.toString; /** * Gets the `toStringTag` of `value`. * * @private * @param {*} value The value to query. * @returns {string} Returns the `toStringTag`. */ function getTag(value) { if (value == null) { return value === undefined ? "[object Undefined]" : "[object Null]"; } return toString.call(value); } export default getTag;