[README] Fix #278

This commit is contained in:
Mihai Bazon
2013-10-30 14:13:10 +02:00
parent 63287c0e68
commit 263577d5eb

View File

@@ -261,7 +261,7 @@ when this flag is on:
- `String(exp)` or `exp.toString()` → `"" + exp`
- `new Object/RegExp/Function/Error/Array (...)` → we discard the `new`
- `typeof foo == "undefined"` → `foo === void 0`
- `void 0` → `"undefined"` (if there is a variable named "undefined" in
- `void 0` → `undefined` (if there is a variable named "undefined" in
scope; we do it because the variable name will be mangled, typically
reduced to a single character).