File size: 207 Bytes
6d3a002
 
 
 
 
 
 
 
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')
  : process.env.NEXT_PUBLIC_DEBUG ? console.info.bind(console)
  : () => {}