UNPKG

langsmith

Version:

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

11 lines (10 loc) 277 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.warnOnce = warnOnce; const warnedMessages = {}; function warnOnce(message) { if (!warnedMessages[message]) { console.warn(message); warnedMessages[message] = true; } }