Fuad Saud

Results 45 comments of Fuad Saud

At first glance I find this to be a bit restricting. I find the the pattern of gradually assoc'ing new props to objects as part of a data transformation pipeline...

Today while writing some code following this same pattern I tried using lenses to update some values in an object (changing type) and, to my surprise, it seems to behave...

I was hit by a similar situation yet another time 😅 : ```typescript captureException(error, { extra: dissoc('error', object) }) ``` In this code, object is a generic object that could...

@Harris-Miller what if you don't control the type of object? In my particular case, object comes from a third-party library (pino). It is, by design, an open object that could...

@Harris-Miller got it. The case I mentioned last also works for `Record` but it doesn't work for objects. I believe I should file a separate issue to discuss it since...