Lewis Liu
Lewis Liu
> The reason plugin sees it differently is because by doing `props.whatever()` you are actually passing `props` itself as a `this` value to `whatever`. So technically it would see stale...
It's definitely possible to destructure earlier, but in a lot of cases that requires introducing intermediate aliases to avoid name clashing, when the things we're trying to access is already...
> I empathize with this use case and I can see how it could be frustrating. I hope you also see where we're coming from here. In JavaScript, rifm.onChange() is...
I gave the 13.6.0 layer a shot, and first few invocations seem to work fine (albeit quite a bit slower than the version on main for some reason), but afterwards...
A few more updates: I gave disabling bfcache a try, but unfortunately it didn't change anything. Also tried an earlier version of the layer at https://github.com/alixaxel/chrome-aws-lambda/pull/264#issuecomment-1064166840, and it had the...
Came here to post a seemingly very similar feature request: a "stale-while-revalidate" style strategy that allows us to serve stale data until the request for latest data comes back. Happy...
I know it's been a while since this PR got any attention, but I'd love to see this picked back up if there's still interest from the author and maintainer...
I've been looking for exactly this feature to limit the potential impact of a compromised local CA. Specifically on Windows systems where the password requirement is decidedly not ideal UX....
I encountered the same issue and found this [wiki page](https://wiki.mozilla.org/CA/AddRootToFirefox) describing the `security.enterprise_roots.enabled` option in `about:config`: > The ImportEnterpriseRoots key will cause Firefox to trust root certificates that are in...
Maybe we can limit multi-line formatting to only destructuring statements with 2 or more props (possibly also make it configurable)? Similar to the ESLint `minProperties` option on their multi-line object...