Ethan Arrowood

Results 165 comments of Ethan Arrowood

In a similar aspect - if a package is deprecated in place of another package could we use a [redirect](https://developer.mozilla.org/en-US/docs/Web/HTTP/Redirections) code (301 or 308)? It could definitely be a security...

Recent discussions highlighted by TypeScript definitions include the handling of ESM and default exports. We should probably pay attention to CJS/ESM behavior (even from just a JS standpoint) as that...

@BethGriggs wdyt about having this discussion / preliminary vote at OpenJS World? I think it could be a fun activity to add to the mix 😄

If you're going to add types I recommend adding it as an index.d.ts and including it in the package.json file under the `types` property. Using global can mess with other...

https://stackoverflow.com/questions/48837831/why-react-children-only

I agree heavily with this point. > The list should consist solely of pinned logos, or remain random. Additionally, I think this line is important: > It can be as...

I've opened #200 to add my employer to the sponsor list. In regards to the highlight part some aspects that come to mind are: - Must be an officially incorporated...

Here is the test file you can use to reproduce: ```ts import tap from 'tap' import sinon from 'sinon' class F { first: any[] second: any[] third: any[] constructor ()...

I did some digging into the source code. I believe the issue is that the counter used for `callId` here: https://github.com/sinonjs/sinon/blob/238f14bb1256c79c57e657ce2f16ff8ca111c9ba/lib/sinon/proxy-invoke.js#L12 is shared between sandboxes.

Yeah this was just for a side project so I didn't have the time to dive into a solution. It wasn't immediately obvious how to make callId unique per sandbox....