remove polyfill column from readme and rename for of to for-of

This commit is contained in:
Sebastian McKenzie 2014-09-29 18:30:39 +10:00
parent be5ebe1758
commit a68dc1e22a
2 changed files with 22 additions and 22 deletions

View File

@ -98,7 +98,7 @@ console.log(`${x} + ${y} = ${x + y}`); // "5 + 10 = 15"
0o767 === 503; // true 0o767 === 503; // true
``` ```
## For Of ## For-of
```javascript ```javascript
``` ```

View File

@ -30,25 +30,25 @@
## [Features](FEATURES.md) ## [Features](FEATURES.md)
| Name | Implemented | [Polyfill](#polyfill) | | Name | Implemented |
| -------------------------------------------------------------------- | ----------- | --------------------- | | -------------------------------------------------------------------- | ----------- |
| [Arrow functions](FEATURES.md#arrow-functions) | ✓ | | | [Arrow functions](FEATURES.md#arrow-functions) | ✓ |
| [Classes](FEATURES.md#classes) | ✓ | | | [Classes](FEATURES.md#classes) | ✓ |
| [Default parameters](FEATURES.md#default-parameters) | ✓ | | | [Default parameters](FEATURES.md#default-parameters) | ✓ |
| [Spread](FEATURES.md#spread) | ✓ | | | [Spread](FEATURES.md#spread) | ✓ |
| [Block binding](FEATURES.md#block-binding) | ✓ | | | [Block binding](FEATURES.md#block-binding) | ✓ |
| [Property method assignment](FEATURES.md#property-method-assignment) | ✓ | | | [Property method assignment](FEATURES.md#property-method-assignment) | ✓ |
| [Rest parameters](FEATURES.md#rest-parameters) | ✓ | | | [Rest parameters](FEATURES.md#rest-parameters) | ✓ |
| [Template literals](FEATURES.md#template-literals) | ✓ | | | [Template literals](FEATURES.md#template-literals) | ✓ |
| [Modules](FEATURES.md#modules) | ✓ | | | [Modules](FEATURES.md#modules) | ✓ |
| [Property name shorthand](FEATURES.md#property-name-shorthand) | ✓ | | | [Property name shorthand](FEATURES.md#property-name-shorthand) | ✓ |
| [Computed property names](FEATURES.md#computed-property-names) | ✓ | | | [Computed property names](FEATURES.md#computed-property-names) | ✓ |
| [Constants](FEATURES.md#constants) | ✓ | | | [Constants](FEATURES.md#constants) | ✓ |
| [Binary and Octal Literals](FEATURES.md#binary-and-octal-literals) | ✓ | | | [Binary and Octal Literals](FEATURES.md#binary-and-octal-literals) | ✓ |
| [For of](FEATURES.md#for-of) | ✓ | ✓ | | [For-of](FEATURES.md#for-of) | ✓ |
| [Array comprehension](FEATURES.md#array-comprehension) | ✓ | | | [Array comprehension](FEATURES.md#array-comprehension) | ✓ |
| [Destructuring](FEATURES.md#destructuring) | ✓ | | | [Destructuring](FEATURES.md#destructuring) | ✓ |
| [Generators](FEATURES.md#generators) | | | | [Generators](FEATURES.md#generators) | |
## Installation ## Installation
@ -149,10 +149,10 @@ browserify()
.pipe(fs.createWriteStream("bundle.js")); .pipe(fs.createWriteStream("bundle.js"));
``` ```
## Polyfill
## Caveats ## Caveats
### For-of
### Classes ### Classes
Cannot subclass built-ins such as `Date`, `Array`, `DOM` etc. Cannot subclass built-ins such as `Date`, `Array`, `DOM` etc.