Jordan Wallet

Results 7 comments of Jordan Wallet

For now we've imported `xcase` into the project and basically copy-pasted your implementation of the default `optionsHandler`, so this isn't blocking us at all. It just slowed us down a...

The short version for how we handled it was to have more persistent data that gets set outside the `callbacks` object. The first time through the callback we flag what...

I second that い or イ is more appropriate. Not only is it a better verbal fit, it also is a better semantic fit (if one were to say `eeeeeeeeeee`...

That's a fair point, but in the absence of such a system I would prefer to favor English because `English` starts with an `E`.

`e.wav` is basically `い` in terms of pronunciation. And if you are on an English-language system then the pronunciation of `e.applescript` is closer to `い`. So there's definitely precedence for...

[Octokit](https://octokit.github.io/rest.js/v19#pagination) has async iterators available for pagination. This gives us a super clean pattern: ```js const getAllPages = async (octokit, request) => { let results = []; for await (const...

Neither do I, which is why I missed such an obvious solution 🤦 I am too accustomed to having redux-saga solve everything for me in this project. Yes, that gives...