File size: 221 Bytes
3ec8f81
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
'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)
  : () => {}