From 8c0d81bedc75e8624ef13241718bffdca8f558bd Mon Sep 17 00:00:00 2001 From: Sebastian McKenzie Date: Wed, 8 Oct 2014 15:50:46 +1100 Subject: [PATCH] separate es6-transpiler paragraphs --- README.md | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 7ee986090f..f05ce01535 100644 --- a/README.md +++ b/README.md @@ -238,13 +238,14 @@ esnext is **slow**, painfully so. See [performance](#performance) for stats. ### [es6now](https://github.com/zenparsing/es6now) -Doesn't output sourcemaps. This is cited as a positive as line-to-line mapping -is the goal. This however obviously doesn't retain column mapping resulting in -the output code not being very pleasant. +es6now doesn't output sourcemaps. This is cited as a positive as line-to-line +mapping is the goal. This however obviously doesn't retain column mapping +resulting in the output code not being very pleasant. ### [es6-transpiler](https://github.com/termi/es6-transpiler) -es6-transpiler requires shims to compile and pollutes the global scope resulting -in possible collisions. es6-transpiler maps line-by-line, just like es6now, this -results in the same issues such as lack of column information and unpleasant -code output. +The es6-transpiler compiler requires shims to operate which pollutes the global +scope resulting in possible collisions. + +es6-transpiler maps line-by-line, just like es6now, this results in the same +issues such as lack of column information and unpleasant code output.