Darryl Noakes

Results 16 comments of Darryl Noakes

How does this relate to #1638 ("proposal: `useOverlap`")?

Your solution looks good, and I believe it would be the best solution in most cases. As a workaround, would getting the Promise in the script and using it directly...

I, for one, would find this useful. Currently, the best simple way is to use nested function calls within a computed, which is a bit messy. E.g. `computed(() => mod(2)(sqrt(addOne(n))))`

As per the [`clamp` spec in the math extensions proposal](https://rwaldron.github.io/proposal-math-extensions/#sec-math.clamp), the new `Math.clamp` function would be defined as `clamp(x, lower, upper) = min(max(x, lower), upper)`. With this definition, the upper...

FWIW, [Jake Archibald's `idb` library](https://github.com/jakearchibald/idb) is a nice thin wrapper around IndexedDB.

As you noted, this could be easy to misuse. However, I, for one, would really find this "shortcut" really handy for many cases. Would a warning in the docs be...

Or even something like the following, where the corresponding type for every key is indexable, with the top-level entries of said type being used as the key/value pairs. Contrived example:...

Relevant: [jcalz's answer to "Generic Functions for Various Data Types in TypeScript" on StackOverflow](https://stackoverflow.com/a/73613965/15261914)

I did state that it should be "when used in a page header", but maybe I didn't make my request clear enough. I was wondering if the the `ion-title` could...

Currently, axe DevTools gives a warning that the page has no level-one heading, and Windows Narrator (I have not tried other screen readers yet) does not read the title out....