Alec Larson

Results 541 comments of Alec Larson

Hey @karmaniverous! This is fixed in the [Radashi fork](https://github.com/radashi-org/radashi) in v12.3.0. Note: The `limit` cannot be `undefined` still, so I recommend using `?? Infinity` instead.

Hello @karoyqiu, we've fixed this over at [the Radashi fork](https://github.com/radashi-org/radashi). You can use it today by installing `radashi@beta`. An official release is pending until I get the docs running. You...

Hi @Balvajs, this is fixed in the Radashi fork ([#95](https://github.com/radashi-org/radashi/pull/95)). A lot of other stuff has been added/fixed too. You can use it today by installing `radashi@beta` ([see changelog here](https://github.com/radashi-org/radashi/blob/main/CHANGELOG.md))....

I think you just have to define `user: {}` before calling set and it will work.

Your PR changes the path grammar. If we're gonna make a breaking change, the “path” argument should really be an array. Then we could differentiate `"1083"` from `1083`. It's not...

The docs for `set` are pretty sparse, but if you look at [`get`](https://radash-docs.vercel.app/docs/object/get), you'll see this example: ```ts import { get } from 'radash' const fish = { name: 'Bass',...

No need for `get` in this instance. ```ts const routeCfg = configs[routeName] ?? {} ``` Lodash uses a complicated and much less performant [regex approach](https://github.com/lodash/lodash/blob/ddfd9b11a0126db2302cb70ec9973b66baec0975/lodash.js#L146), which apparently works in your...

Don't know what you mean. Give an example with input data and expected result. Use [triple backticks](https://docs.github.com/en/get-started/writing-on-github/getting-started-with-writing-and-formatting-on-github/basic-writing-and-formatting-syntax#quoting-code) to quote the code, so I can copy-paste it.