@instana/collector
Advanced tools
Comparing version 1.68.4 to 1.69.0
{ | ||
"name": "@instana/collector", | ||
"version": "1.68.4", | ||
"version": "1.69.0", | ||
"description": "The Instana Node.js metrics and trace data collector", | ||
@@ -121,3 +121,3 @@ "author": { | ||
"dependencies": { | ||
"@instana/core": "^1.68.4", | ||
"@instana/core": "^1.69.0", | ||
"bunyan": "^1.8.12", | ||
@@ -142,3 +142,3 @@ "event-loop-lag": "^1.4.0", | ||
}, | ||
"gitHead": "ec37ac1bef979908babd8bc267ab6cb3f2228a1c" | ||
"gitHead": "af167706d3a739a3ec3b69af8d3a7db3b8b48179" | ||
} |
@@ -6,4 +6,4 @@ /* global WeakSet */ | ||
module.exports = exports = function createCircularReferencesRemover() { | ||
const seen = new WeakSet(); | ||
return (_, value) => { | ||
var seen = new WeakSet(); | ||
return function(_, value) { | ||
if (typeof value === 'object' && value !== null) { | ||
@@ -10,0 +10,0 @@ if (seen.has(value)) { |
69398
Updated@instana/core@^1.69.0