@join-com/gcloud-logger
Advanced tools
Comparing version 1.3.0-alpha.2 to 1.3.0-alpha.3
@@ -181,2 +181,8 @@ "use strict"; | ||
alreadySeen.add(obj); | ||
if (typeof obj.pipe === 'function') { | ||
return '[object Stream]'; | ||
} | ||
if (Buffer.isBuffer(obj)) { | ||
return '[object Buffer]'; | ||
} | ||
if (Array.isArray(obj)) { | ||
@@ -183,0 +189,0 @@ return obj.map(item => replaceCircular(item, alreadySeen)); |
{ | ||
"name": "@join-com/gcloud-logger", | ||
"version": "1.3.0-alpha.2", | ||
"version": "1.3.0-alpha.3", | ||
"description": "gcloud simple logger", | ||
@@ -5,0 +5,0 @@ "author": "JOIN Solutions", |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
19476
284