Jesse Jackson

Results 165 comments of Jesse Jackson

I think I have encountered this issue as well, while getting a list of Halloween emoji: halloween-emoji.ts: ```ts import {DOMParser, Element, HTMLDocument} from 'https://deno.land/x/[email protected]/deno-dom-wasm.ts'; const fetchDoc = async (url: string)...

@BentoumiTech I can see how that would complicate things. However, #19 addresses this.

I love less typing, too! I have proposed an alternate solution to this in #16

I want to echo what @BentoumiTech said about reserved words, and also add another note: It is more robust CLI design to reserve argument positions for the types they represent....

> What solution do you think is possible to avoid possible issues when evaluating workspace script files? I think it's not simple, and that all solutions involve trade-offs. At the...

@zerobias Thank you for responding. > You can read your fields directly with useStore > > ```js > const $user = createStore({name: 'alice', age: 22}) > > export const User...

@zerobias Thanks for providing those examples. In this case, I am in need of the opposite of `combine`: I need to only receive updates when selected keys of the store...

Thanks, again. > Split monolithic single store with irrelevant fields to atomic stores and [combine only necessary ones](https://github.com/effector/effector/issues/424#issuecomment-730616112). If your use cases assumes that you need more than one combination...

Here's an example of what describing (the `partialStore` function), but it only works for for objects (not arrays), and only top level keys (not nested ones): ```ts const pick =...