Skip to content

Instantly share code, notes, and snippets.

@widyakumara
Created November 19, 2021 08:36
Show Gist options
  • Save widyakumara/e32816b38ca26ab2078162a739ec7e82 to your computer and use it in GitHub Desktop.
Save widyakumara/e32816b38ca26ab2078162a739ec7e82 to your computer and use it in GitHub Desktop.
disable console.* on production
if (env === 'production') {
const noop = () => {}
['assert', 'clear', 'count', 'debug', 'dir', 'dirxml', 'error',
'exception', 'group', 'groupCollapsed', 'groupEnd', 'info', 'log',
'markTimeline', 'profile', 'profileEnd', 'table', 'time', 'timeEnd',
'timeline', 'timelineEnd', 'timeStamp', 'trace', 'warn',
].forEach((method) => {
window.console[method] = noop
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment