Skip to content

Instantly share code, notes, and snippets.

@kjirou
Last active December 22, 2015 19:29
Show Gist options
  • Save kjirou/6519936 to your computer and use it in GitHub Desktop.
Save kjirou/6519936 to your computer and use it in GitHub Desktop.
A shortcut of `console.log(util.inspect(obj, ..))`
var util = require("util");
var inspect = function(obj, depth){
depth = depth || 0;
console.log(util.inspect(obj, false, depth));
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment