You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
regression for undefined values in objects. I think it should make Jsonlike key optional, like:
typeObj={a: string|null|undefined}typeResultJsonLikeType={a?: string|null}declareconstobj: Obj;// works as JSON.strinigfy(obj) will remove undefined valuesreq.send(obj)// results in a {} response
The text was updated successfully, but these errors were encountered:
regression for undefined values in objects. I think it should make Jsonlike key optional, like:
The text was updated successfully, but these errors were encountered: