sys.js: --needless Object.keys() --needless .map() in a single patch

This commit is contained in:
Jorge Chamorro Bieling 2010-09-19 10:05:01 +02:00 committed by Ryan Dahl
parent 354150f4e1
commit fc334b3a97

View File

@ -106,13 +106,8 @@ exports.inspect = function (obj, showHidden, depth, colors) {
}
// Look up the keys of the object.
if (showHidden) {
var keys = Object.getOwnPropertyNames(value).map(function (key) { return '' + key; });
} else {
var keys = Object.keys(value);
}
var visible_keys = Object.keys(value);
var keys = showHidden ? Object.getOwnPropertyNames(value) : visible_keys;
// Functions without properties can be shortcutted.
if (typeof value === 'function' && keys.length === 0) {