-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjsvardump.js
54 lines (44 loc) · 887 Bytes
/
jsvardump.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
var dump = function(obj, indent) {
if (!isObject(obj)) {
console.log(obj);
return;
}
if (!indent) {
console.log(typeof obj);
indent = indent || '';
}
var myindent,
childindent,
len = Object.keys(obj).length,
index = 0,
key,
item;
for (key in obj) {
index++;
item = obj[key];
myindent = indent + '├─ ';
childindent = indent + '│ ';
if (index === len) {
myindent = indent + '└─ ';
childindent = indent + ' ';
}
if (isObject(item)) {
console.log(myindent + key);
dump(item, childindent);
continue;
}
if (isFunction(item)) {
item = typeof item;
}
console.log(myindent + key + ':' + item);
}
};
var isObject = function(item) {
var type = typeof item;
return type === 'object' && !!item;
};
var isFunction = function(item) {
var type = typeof item;
return type === 'function';
};
exports.dump = dump;