Peyton Hanel

Results 5 comments of Peyton Hanel

An option that allows the search feature to do a search in the current tab, rather than opening a new tab and doing it there.

It doesn't work in every situation I've needed this. `style='display: none'` is less performant than `{#if}` and it also doesn't let me use certain features included with svelte, such as...

> But this do no allow transition... @adiguba I'm using transitions so that's one reason why I don't use `display: none` > In React we used stores too - we...

This is super helpful. Thank you so much. Can you speak at all to the parameterized SQL calls and how you prevent SQL injections? Do you think you will add...

So just to be clear, doing this is safe against SQL injections: ``` const results1 = await conn.execute('select 1 from dual where 1=?', [42]) ```