| Aug | SEP | Oct |
| 01 | ||
| 2019 | 2020 | 2021 |
COLLECTED BY
Collection: github.com
JavaScript (JS) is a lightweight interpreted or JIT-compiled programming language with first-class functions. While it is most well-known as the scripting language for Web pages, many non-browser environments also use it, such as Node.js, Apache CouchDB and Adobe Acrobat. JavaScript is a prototype-based, multi-paradigm, dynamic language, supporting object-oriented, imperative, and declarative (e.g. functional programming) styles.
function foo*() { yield 1; yield 2; } let gen = foo()Currently if you put
gen into state or props and then open this component in DevTools, it will consume that generator while trying to format it. So gen.next() will give you { done: true } next time you call it.
This happens here:
https://github.com/facebook/react/blob/60ba723bf78b9a28f60dce854e88e206fab52301
Read more
Component: Developer Tools
Type: Bug
good first issue (taken)
Open
$ git grep -n '<< 24' src/
src/base64.h:88: unbase64(src[i + 0]) << 24 |
src/cares_wrap.cc:83: return static_cast<uint32_t>(p[0] << 24U) |
src/node_sockaddr.cc:305: uint32_t check = ptr[0] << 24 | ptr[1] << 16 | ptr[2] << 8 | ptr[3];
src/util-inl.h:51: (((x) & 0xFF) <<24) | \
src/util-inl.h:61: (((x) & 0x0000000000FF0000ul
Read more
C++
good first issue
Open
let x: ""["bar"]Request completions inside of
"" and you'll get the names of every propery on String. What's happening is that we're not checking to see if the current string literal type is the argument type (as opposed to the object type itself).
Learning how this works might be a bit involved, but the fix is easy: add fourslash tests, ad
Read more
Bug
Domain: Completion Lists
good first issue
help wanted
Open
StepIcon component are instantaneous, even though the entire component is quite animated and fluid. The StepIcon goes through several colors (default -> active -> completed), and I believe a simple transition: color 300ms ease; already adds quite a bit more style
Read more
component: Stepper
enhancement
good first issue
Open
yarn why won't indicate any package info in the resolutions field
If the current behavior is a bug, please provide the steps to reproduce.
(一)install a package with any version, e.g "pkg": "^1.0.0"
(二)add resolutions field in package.json, pkg: "1.0.0"
(三)upd
Read more
cat-feature
good first issue
Open
Event