12stgss's picture
Duplicate from hf4all/bingo
3ec8f81
raw
history blame contribute delete
221 Bytes
'use client'
import Debug from 'debug'
export * from 'ifw'
export const debug = typeof document === 'undefined' ? Debug(`bingo-${Date.now()}`)
: process.env.NEXT_PUBLIC_DEBUG ? console.info.bind(console)
: () => {}