We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d929ee1 commit 45d0831Copy full SHA for 45d0831
lib/index.js
@@ -58,7 +58,7 @@ module.exports = internals.purdy;
58
59
internals.travel = function (object, path) {
60
61
- var type = global.toString.call(object).split(' ')[1].slice(0, -1);
+ var type = toString.call(object).split(' ')[1].slice(0, -1);
62
var format = '';
63
64
if (internals[type]) {
@@ -105,7 +105,7 @@ internals.tidyPath = function (path) {
105
return internals.colorize(path.slice(1, path.size), 'path');
106
};
107
108
-internals.Object = function (object, path) {
+internals.Object = internals.process = internals.global = function (object, path) {
109
110
var keys = Object.keys(object);
111
0 commit comments