diff --git a/jsre/pp_js.go b/jsre/pp_js.go
index 3c0de37e5667d9b4d8375a5b04199bf1f2e95724..2badb90e72cee5a1b71b8d1fc9bc532e78925699 100644
--- a/jsre/pp_js.go
+++ b/jsre/pp_js.go
@@ -63,12 +63,24 @@ function pp(object, indent) {
     return str;
 }
 
+var redundantFields = [
+    'valueOf',
+    'toString',
+    'toLocaleString',
+    'hasOwnProperty',
+    'isPrototypeOf',
+    'propertyIsEnumerable',
+    'constructor'
+];
+
 var getFields = function (object) {
     var result = Object.getOwnPropertyNames(object);
     if (object.constructor && object.constructor.prototype) {
         result = result.concat(Object.getOwnPropertyNames(object.constructor.prototype));
     }
-    return result;
+    return result.filter(function (field) {
+        return redundantFields.indexOf(field) === -1;
+    });
 };
 
 var isBigNumber = function (object) {