Marcin Wanago

Results 4 issues of Marcin Wanago

Currently, the [pg](https://www.npmjs.com/package/pg) library uses a very old version of [pg-types](https://www.npmjs.com/package/pg-types). Is there something, in particular, that is stopping us from updating to the newest version of the pg-types library?

Hello. I'm trying to add custom types to the editor and export/import not only the values, but the current state of all the types. I tried a lot of thing...

I was trying to make sure that the `plainToClass` function removes all of the properties that are not specified in the class. It looks like we can do it in...

type: question

When we call the `parse` function with a cookie that contains the `HttpOnly` clause, it gets ignored. ```javascript const cookie = require("cookie"); const parsedCookie = cookie.parse( "Authentication=token; HttpOnly;", ); console.log(parsedCookie.Authentication);...