@navikt/ds-react
Version:
React components from the Norwegian Labour and Welfare Administration.
14 lines (11 loc) • 315 B
text/typescript
const sentMessages = new Set<string>();
function consoleWarning(...content: unknown[]) {
if (process.env.NODE_ENV !== "production") {
const key = content.join();
if (!sentMessages.has(key)) {
console.warn("[Aksel]", ...content);
sentMessages.add(key);
}
}
}
export { consoleWarning };