James Qualls

Results 35 comments of James Qualls

In case anyone is interested in my lodash implementation. ```js const redacted = '[REDACTED]' function redactInsecureRequestData (req, propName) { if (propName === 'headers') { return _ .chain(req) .get(propName) .cloneDeep() .set('cookie',...

We use sharp to stream and transform screenshots generated by chrome headless and store them in google cloud storage. We use them for customer-facing images as well as internal screenshots...

@amorey I think that makes sense. I can't think of a way to easily indicate that it's overriding the insertion. I kind of like `beforeInsert`

Sure, in that case i think `append` makes sense.

Once it's decided would you like me to update my PR?

That's clean!!!!! On Tue, Mar 21, 2017, 8:56 AM Andres Morey wrote: > Here's another idea - how about combining the before and append callbacks > into one method? If...

> You need to remove all comments This solved it for me.

I submitted a fix to the docs. https://github.com/CarterGrimmeisen/zod-prisma/pull/124

I'm running to the same issue as @rastko-florencehc @tngan thank you for the awesome work BTW :)

I was trying to follow along here because I had a similar theory. https://go.dev/play/p/pjtX_coRiQ8 ```go package main import "fmt" func recurse(a []string) []string { if len(a) == 3 { return...