Issue with Console Logging Parsed Value: [object Object]
Does anyone know why I would only see
const world = S.struct({ hello: S.literal("world") });
console.log(S.parseSync(world)({ hello: "world" }));
// [object Object]
[object Object] when I try to console log a parsed value?const world = S.struct({ hello: S.literal("world") });
console.log(S.parseSync(world)({ hello: "world" }));
// [object Object]
