docs(async): edit async

This commit is contained in:
ruanyf
2016-07-09 20:17:22 +08:00
parent 8be15721fa
commit eb53f2cef2
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -874,7 +874,7 @@ function* entries(obj) {
// 非Generator函数的版本
function entries(obj) {
let arr = [];
for (key of Object.keys(obj)) {
for (let key of Object.keys(obj)) {
arr.push([key, obj[key]]);
}
return arr;