Sathya Gunasekaran

Results 6 issues of Sathya Gunasekaran

In [`ResolveLocale`](https://tc39.github.io/ecma402/#sec-resolvelocale), we have > 9. a. Let privateIndex be Call(%StringProto_indexOf%, foundLocale, « "-x-" »). subsequently, we have > 9. b. If privateIndex = -1, then > i. Let foundLocale...

editorial
s: help wanted
c: locale

Flight already has an implementation of useMemoCache: https://github.com/facebook/react/blob/main/packages/react-server/src/ReactFlightHooks.js#L73-L79 This PR exports the existing hook.

CLA Signed
React Core Team

Full screen needs to be requested on a user input action. library_sdl.js currently fakes it by checking on every keypress/mousemove to see if there is a need to go full...

If I'm reading the spec correctly `AllPrivateIdentifiersValid` will validate correctly for the outer class but not for the inner class. Is this intended behavior or a spec bug?

documentation

https://github.com/modderme123/js-reactivity-benchmark/blob/71902bfc0983fe82f3420be856a6419daa3205be/src/molBench.ts#L50 `optimizeFunctionOnNextCall` optimises the function on the next call but in this case, we've never called it before so there is no feedback. The generated code is going to be...

Currently, the react compiler can not compile within callbacks which can potentially cause over rendering. Consider this example: ```jsx function Component(countries, onDelete) { const name = useFoo(); return countries.map(() =>...

CLA Signed
React Core Team