Johan Brook

Results 11 comments of Johan Brook

Any chance this could be merged? 👼

I'm also experiencing this, but I *don't* think it's that intuitive behaviour :D Pushing a new path to the stack shouldn't keep the old query parameter, imo, since it'll feel...

FYI, it's in the [`getNextLocation` function](https://github.com/ReactTraining/history/blob/master/packages/history/index.ts#L481): ```ts function getNextLocation(to: To, state: State = null): Location { return readOnly({ ...location, ...(typeof to === 'string' ? parsePath(to) : to), state, key: createKey(),...

We use `imitate` without CycleJS in our app. It's similar to CycleJS in its cyclical nature though. Example structure: ```ts const browserOut$ = xs.create(); const browserIn$ = driver.BrowserDriver(browserOut$); const sinks...

Same problem. Hope https://github.com/jaredhanson/passport/pull/941 could fix this.

Temporal API is stable in Deno 1.40 now: https://deno.com/blog/v1.40 :)

> it feels like this is most appropriately treated as a bot-device return type (it seems to be a bot simulating a device). Is that correct? Yea, I'd say so...

I have this problem when bundling code for the browser and having `type: module` set in `package.json`. - Our repo contains both server side Node code and client code. -...

Seconded on Clayton's comment above regarding debug logs. I'm trying — for fun — to add support for SQL grammar (based on https://github.com/DerekStride/tree-sitter-sql), but I can't for my life get...