1
2
3
4
function odump(object, depth, max){
  depth = depth || 0;
  max = max || 2;
...

JavaScript Recursively dump an object

by hubfactor, February 01, 2008 12:40, 2 refactorings, tagged with javascript, dump, recursive

Given an object, iterate th...

Ed9c50a6db8b5e078b5ef84306a8477c Talk