We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 722b244 commit fc20d17Copy full SHA for fc20d17
1 file changed
docs/parse.js
@@ -71,9 +71,9 @@ function stringifyObjectKey(key) {
71
*/
72
function inspect(object) {
73
74
- var accumulator = document.createDocumentFragment();
75
- _inspect(accumulator, object, 0, []);
76
- return accumulator;
+ var root = document.createDocumentFragment();
+ _inspect(root, object, 0, []);
+ return root;
77
78
/**
79
* @param {DocumentFragment} root
0 commit comments