1
0
mirror of https://github.com/ruanyf/es6tutorial.git synced 2025-05-24 18:32:22 +00:00

Merge pull request #412 from xiangyangL/gh-pages

缺少括号
This commit is contained in:
Ruan YiFeng 2017-05-25 08:02:15 -05:00 committed by GitHub
commit 8223b56dda

View File

@ -130,7 +130,7 @@ var flat = function* (a) {
} else {
yield item;
}
}
});
};
for (var f of flat(arr)){