Sean Lynch

Results 122 comments of Sean Lynch

@mhkeller It does not. I have not ran into this issue myself (surprisingly) and have used `{...$$restProps}` quite a lot with [LayerChart](https://github.com/techniq/layerchart/search?q=restprops) and [svelte-ux](https://github.com/techniq/svelte-ux/search?q=restprops). The example [REPL](https://svelte.dev/repl/0e6f7df1207e4b9faaaa0fb2597badd9?version=3.49.0) uses `$$restProps` (not...

Very nice work @aioutecism. I'm attempting to move from Atom to VSCode and need my vim bindings :). I too tried the other extensions out there and yours is clearly...

Awesome. If i get some time, I'll try to dig in and take a look.

Neither have I, but I have a need for it on one of my projects, so here I am :) I'll explore the syntax with js-data-sql and try to keep...

I've been debating myself how to handle specifying the types within odata-query. So far I've been considering 2 approaches: 1. Have the formatting occur ahead of time by exposing a...

Starting in `5.4.0` you can now pass the value as an object `{ type: 'guid', value: '312312-3123-12-3123-123' }`. We currently support `type` as `guid` and `raw` (raw is provided if...

@samuelportz all [comparison operators](https://github.com/techniq/odata-query#comparison-operators) except `in` should be supported, as `in` is a special convenience operator to explode into an `or` statement. Your referenced fix looks good to me and...

You could turn `indexof(tolower(Name), 'gead')` into a string like so: ```js { filter: { Item: { any: { "indexof(tolower(i/Name), 'gead')": { eq: -1 } } } } } ``` You...

Hmm, just took a quick look, and it appears we [prefix](https://github.com/techniq/odata-query/blob/master/src/index.js#L149-L151) any parameters within a function using this [regex](https://github.com/techniq/odata-query/blob/master/src/index.js#L13), which is why `p/tolower` is being prefixed from the nested functions....

@jstuder-gh Thanks, I'm glad you're finding value with the proejct. While not well documented, you can pass an object and specific the type as [raw](https://github.com/techniq/odata-query/blob/master/src/index.js#L288-L289) to handle the escape/etc. See:...