mirror of
https://github.com/swc-project/swc.git
synced 2024-12-22 05:01:42 +03:00
13 lines
180 B
JavaScript
13 lines
180 B
JavaScript
|
var tmp = Symbol.iterator;
|
||
|
new class {
|
||
|
next() {
|
||
|
return {
|
||
|
value: Symbol(),
|
||
|
done: !1
|
||
|
};
|
||
|
}
|
||
|
[tmp]() {
|
||
|
return this;
|
||
|
}
|
||
|
};
|