Tommy D. Rossi
Tommy D. Rossi
For anyone searching for a quick solution you can escape urls before passing them to `feed` ```ts function escapeXmlAttr(unsafe: string) { if (!unsafe) { return } return unsafe.replace(/[&'"]/g, function (c)...
Has anyone already published a fork with these changes?
This problem can be temporarily be fixed using `interface{}` types inside returned structs, it seems that `graphql-go` treats the `interface{}` nil differently from others
Anyone knows about any library to handle this?
Has someone found a solution?
I made a similar package that uses typescript if you want to check it out, it is called [baby-i-am-faded](https://github.com/remorses/baby-i-am-faded)
What if we move the retry logic inside the fetch method? The user could then pass something like `fetchOptions: {retry: 3}`
Your parser performance is astonishing, it would be super cool to use your parser in webpack to decrease build time This way you would also get native typescript support 😛
Is there a way to generate source maps with the cli too?
This is not possible now, it could be done deploying old versions on different sub domains and have a select inout to redirect to the sub domain for the right...