From 3578135b90b214b016ddb7a2602f376db416de12 Mon Sep 17 00:00:00 2001 From: Sebastian McKenzie Date: Wed, 12 Nov 2014 18:27:05 +1100 Subject: [PATCH] add spread caveat and add generator comprehension and react/jsx to features --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index 5e1b392939..fef8b04e3a 100644 --- a/README.md +++ b/README.md @@ -64,11 +64,13 @@ It's as easy as: - [Destructuring](FEATURES.md#destructuring) - [For-of](FEATURES.md#for-of) - [Generators](FEATURES.md#generators) via [regenerator](https://github.com/facebook/regenerator) + - [Generator comprehension](FEATURES.md#generator-comprehension) - [Let scoping](FEATURES.md#let-scoping) - [Modules](FEATURES.md#modules) - [Numeric literals](FEATURES.md#numeric-literals) - [Property method assignment](FEATURES.md#property-method-assignment) - [Property name shorthand](FEATURES.md#property-name-shorthand) + - [React/JSX](#reactjsx) - [Rest parameters](FEATURES.md#rest-parameters) - [Spread](FEATURES.md#spread) - [Template literals](FEATURES.md#template-literals) @@ -331,6 +333,11 @@ class Bar extends Foo { } ``` +### Spread + +An [ES6 polyfill](#polyfill) is required in order for spread to work. More +specifically a polyfill for `Array.from`. + ### Generators The [regenerator runtime](https://github.com/facebook/regenerator/blob/master/runtime.js)