Gary Mathews
Gary Mathews
@hansemannn That's something I'm curious about too. There will be some impact, I'll be running some benchmarks soon and report my findings.
@hansemannn That's the direction I want to go in, but there's parity issues doing so. iOS doesn't offer a `Promise` type or any APIs to handle promises natively. Until there's...
Here's a workaround, disable `removeUndefined`: ```JS ['minify', { removeUndefined: false }] ```
@koskimas is this something you're open to adding?
I'm also running into this issue. From what I've found it's caused by this deferred promise. https://github.com/googleapis/nodejs-pubsub/blob/main/src/message-queues.ts#L191 ```JS ... const responsePromise = defer(); // TC1. Doing this still causes the...