Tim

Results 171 comments of Tim

> Yes, it will work for objects, but not for primitives, especially if it is a long strings If you have a large string, and rebind it to another variable,...

I think mobile only is a good option.

> Would `translate: 'translateZ(0)'` help in addition to the `willChange` prop? No it doesn't help here.

> As far as i understand the JS – each time you pass a primitive to somewhere – you get the new copy of it in memory. > > https://javascript.info/object-copy...

> Are we sure there's no way to keep the blur but improve the performance? I'm finding it difficult to decide if it's worth losing the blur for the tiny...

> It would be really nice if this was more customizable I think we should lean towards a consistent experience over customizability here. In saying that, I think date formatting...

The issue is actually with the overload that assists autocompletion, if you remove it the `...args` inference will work.

This patch seems to fix this: ```patch diff --git a/lib/web/fetch/body.js b/lib/web/fetch/body.js index 81d9b6d0e67a11ecb51241e0daf3b8a05cd11b49..d5edc13e5f2216ab47d21291ed8aca22f52b7191 100644 --- a/lib/web/fetch/body.js +++ b/lib/web/fetch/body.js @@ -117,7 +117,7 @@ function extractBody (object, keepalive = false) { //...