Source code
Revision control
Copy as Markdown
Other Tools
// The argument to WeakMap may be a generator-iterator that produces no values.
function* none() {
if (0) yield 0;
}
new WeakMap(none());
// The argument to WeakMap may be a generator-iterator that produces no values.
function* none() {
if (0) yield 0;
}
new WeakMap(none());