1
0
mirror of https://github.com/ruanyf/es6tutorial.git synced 2025-05-29 13:52:22 +00:00

fix: 强迫症犯了想去掉多余空格好看一些

This commit is contained in:
An Hongpeng 2021-04-24 23:22:28 +08:00 committed by GitHub
parent 95f57f881e
commit fa03d29d64
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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