1
0
mirror of https://github.com/ruanyf/es6tutorial.git synced 2025-06-07 22:20:54 +00:00

Merge pull request from xiangyangL/gh-pages

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

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