Created
January 13, 2016 10:33
-
-
Save h3xxx/b540226705793320b41e to your computer and use it in GitHub Desktop.
Snippet for clear JS console.
This file contains hidden or 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
// taken from http://stackoverflow.com/questions/3011600/clear-javascript-console-in-google-chrome | |
if (typeof console._commandLineAPI !== 'undefined') { | |
console.API = console._commandLineAPI; | |
} else if (typeof console._inspectorCommandLineAPI !== 'undefined') { | |
console.API = console._inspectorCommandLineAPI; | |
} else if (typeof console.clear !== 'undefined') { | |
console.API = console; | |
} | |
console.API.clear(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment