Created
December 27, 2021 11:19
-
-
Save thevangelist/401ce0fdbd306c088ade55eff92d401e to your computer and use it in GitHub Desktop.
Console.log only in dev mode (debug)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const debug = | |
process.env.NODE_ENV !== "production" | |
? console.log.bind(console) | |
: () => void 8; | |
export default debug; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment