Aaron Hardy
Aaron Hardy
Hey, "cool" library. We're considering using it for one of our projects, but it's missing something critical for our needs. Here's what we're trying to accomplish: ```js var { Path...
Hi! Thanks for the great library. I'm noticing an issue when array brackets are within keys. For example: ```js const data = { "a[]b": "c" }; dot.forEach(data, 'a[]b', () =>...
The code I am testing is leveraging `setImmediate()` to defer a function call. It would be nice to use Jasmine's clock to fast-forward over the delay similar to how I...
Hello Dollar Shave Club! First of all, thanks for all the work you've put into this project. Your use of promises and closures is really smart. I have some feedback...
# 🐛 Bug Report If you change the label of tab, the heavy line underneath the selected tab doesn't update in position or width to accommodate the new label. ##...
I notice when I run `yalc add @adobe/reactor-turbine` and `npm install`, the sym link within `node_modules` is a relative path: ``` 12944872285 lrwxr-xr-x 1 aahardy staff 34B Jun 4 14:03...
When tests are running on SauceLabs, the process fails. Here's the last relevant message: ``` 09 05 2020 16:58:47.168:WARN [launcher]: Chrome on SauceLabs have not captured in 60000 ms, killing....
Currently the `parentOrigin` option on `connectToParent` is optional but highly recommended. If it isn't specified, the child is allowed to communicate with any parent origin (rather than a specific parent...
First off, I have little understanding of the interactions amongst karma, webpack, istanbul-instrumenter-loader, and karma-coverage. This may not be the appropriate project for my request and, if not, maybe you...
Hey, first of all, thanks for Zod! I'd like to access the value being validated inside a `lazy` callback, like this: ```ts z.lazy((value) => { if (value) { return z.object({...