@brandboostinggmbh/observable-workflows 0.8.1 → 0.8.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +0 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -253,7 +253,6 @@ function trySerializeObj(obj, serializer) {
|
|
|
253
253
|
} catch (error) {
|
|
254
254
|
console.error("Error serializing object:", error instanceof Error ? {
|
|
255
255
|
message: error.message,
|
|
256
|
-
cause: error.cause,
|
|
257
256
|
stack: error.stack
|
|
258
257
|
} : error);
|
|
259
258
|
return String(obj);
|
|
@@ -265,7 +264,6 @@ function tryDeserializeObj(obj, serializer) {
|
|
|
265
264
|
} catch (error) {
|
|
266
265
|
console.error("Error deserializing object:", error instanceof Error ? {
|
|
267
266
|
message: error.message,
|
|
268
|
-
cause: error.cause,
|
|
269
267
|
stack: error.stack
|
|
270
268
|
} : error);
|
|
271
269
|
return obj;
|