Skip to content

Instantly share code, notes, and snippets.

@unknownuser88
Created January 6, 2014 15:36
Show Gist options
  • Save unknownuser88/8284541 to your computer and use it in GitHub Desktop.
Save unknownuser88/8284541 to your computer and use it in GitHub Desktop.
$.debug extend function
$.extend({
debug:function(text, dir){
var dir = dir || false;
    if (window.console && window.console.log) {
(dir === true && window.console.dir) ? window.console.dir(text) : window.console.log(text);
    }
}
})
// $.debug('console.log test');
// $.debug('console.dir test' , true);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment