UNPKG

use-vibes

Version:

Transform any DOM element into an AI-powered micro-app

9 lines 321 B
export const isDebug = () => Boolean(import.meta.env?.DEV) && (typeof window === 'undefined' || localStorage.getItem('debugDelete') === '1'); export function logDebug(...args) { if (isDebug()) { // eslint-disable-next-line no-console console.log(...args); } } //# sourceMappingURL=debug.js.map