Skip to content

Instantly share code, notes, and snippets.

@miaulightouch
Created August 17, 2018 15:29
Show Gist options
  • Save miaulightouch/ef1691a867c9d7e6d47b9178b69caaa1 to your computer and use it in GitHub Desktop.
Save miaulightouch/ef1691a867c9d7e6d47b9178b69caaa1 to your computer and use it in GitHub Desktop.
import browser from './browser'
import node from './node'
/**
* Detect environment
*/
const debug =
// web browsers
typeof process === 'undefined' ||
// Electron
process.type === 'renderer' ||
// nwjs
process.__nwjs ||
// 'process' package
process.browser
? browser()
: node()
export default debug
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment