修改iterator/Symbol.iterator

This commit is contained in:
Ruan Yifeng
2015-02-10 16:36:29 +08:00
parent 0c21b61c55
commit 9344196b46
2 changed files with 10 additions and 2 deletions
+2 -2
View File
@@ -256,8 +256,8 @@ normalize方法可以接受四个参数。
```javascript
'\u004F\u030C'.normalize(NFC).length // 1
'\u004F\u030C'.normalize(NFD).length // 2
'\u004F\u030C'.normalize('NFC').length // 1
'\u004F\u030C'.normalize('NFD').length // 2
```