Sukka

Results 403 comments of Sukka

Reuse `y` sounds like a bad idea. However, the type (`string`) doesn't change so I guess v8 could handle this.

@yichengchen ![image](https://user-images.githubusercontent.com/40715044/65994646-6f17d080-e4c6-11e9-84ba-6fcb6a7051b6.png) 我觉的这个控件挺好,就用这个了。 ![image](https://user-images.githubusercontent.com/40715044/65994700-8ce53580-e4c6-11e9-977d-ed8ee72fe3bc.png) 放在这个卡片里就行,切换 Log Level 展示不影响配置文件本身、仅在面板中生效

> Is it only `mask-border, scroll-snap-align, scroll-padding-top, scroll-snap-margin` that are getting extra prefixes? I only select a few from those collided. There are probably more since my PoC doesn't filter...

> After swtiching to CFGA pageview report by url (or Page, default dimension) is not showing the right items, seems all views counted to "/", but Page Title report is...

Note it is not the issue of `typescript-plugin-css-modules`. It is `postcss-icss-keyframes` that relies on `postcss@6`.

FYI, preact implements a `useErrorBoundary` to catch error during rendering: https://preactjs.com/guide/v10/hooks/#useerrorboundary https://github.com/preactjs/preact/blob/0406941612c12f1056e9f1f00c62030c591dd085/hooks/src/index.js#L319 However, preact still implements it based on `componentDidCatch`. It is possible to implement a similar solution, but it...

That's really weird though. I have checked the source code of `node-tar`. Seems that its implementation won't cause such a race condition. Also, `node-tar` is used by npm. There must...

@ijjk The reason the PR is created is the pre-compiled client codes are already targeting `es2016`. So no matter how a user/developer configures their browserlists, it is currently impossible for...

> > The reason the PR is created is the pre-compiled client codes are already targeting es2016 > > The client files we transpile ahead of time should be reprocessed...

> Hi, I thought to use new [`useInsertionEffect`](https://reactjs.org/docs/hooks-reference.html#useinsertioneffect) for `` component hence it used to toggle CSS efficiently where previously we used `useLayoutEffect`. > > ```js > // Dummy component...