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

Merge pull request #1048 from roc-an/patch-3

fix: 强迫症犯了想去掉多余空格好看一些
This commit is contained in:
Ruan YiFeng 2021-04-26 10:14:49 +08:00 committed by GitHub
commit 0163114de4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -696,7 +696,7 @@ function* gen() {
var g = gen();
g.next() // { value: 1, done: false }
g.next() // { value: 1, done: false }
g.return() // { value: undefined, done: true }
```