remove useless readme headings

This commit is contained in:
Sebastian McKenzie 2014-09-29 01:34:20 +10:00
parent 1db8afa97a
commit fc1ff3f858

View File

@ -24,7 +24,7 @@
- **Fast** - [10x faster than Traceur](#comparison-to-traceur). - **Fast** - [10x faster than Traceur](#comparison-to-traceur).
- **Easy** - with Browserify support, Node API, Connect Middleware and a CLI. - **Easy** - with Browserify support, Node API, Connect Middleware and a CLI.
- **Compact** - maps directly to the equivalent ES5. - **Compact** - maps directly to the equivalent ES5 with **no runtime required**.
- **Concise** - does not pollute scope with unneccesary variables. - **Concise** - does not pollute scope with unneccesary variables.
## Features ## Features
@ -87,7 +87,7 @@ to5.transformFile("script.js", function (err, data) {
to5.transform("code();", { to5.transform("code();", {
// List of transformers to EXCLUDE // List of transformers to EXCLUDE
// This is a camelised version of the name found in `features` // This is a camelised version of the name found in `features`
// eg. "arrow functions" is "arrowFunctions" // eg. "Arrow functions" is "arrowFunctions"
blacklist: [], blacklist: [],
// List of transformers to ONLY use. // List of transformers to ONLY use.
@ -142,10 +142,6 @@ browserify()
.pipe(fs.createWriteStream("bundle.js")); .pipe(fs.createWriteStream("bundle.js"));
``` ```
## Caveats
### Generators
### Let
## Comparison to Traceur ## Comparison to Traceur
### Performance