agsamantha/node_modules/langsmith/dist/utils/warn.cjs

12 lines
304 B
JavaScript
Raw Normal View History

2024-10-02 15:15:21 -05:00
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.warnOnce = void 0;
const warnedMessages = {};
function warnOnce(message) {
if (!warnedMessages[message]) {
console.warn(message);
warnedMessages[message] = true;
}
}
exports.warnOnce = warnOnce;