monolithed (2015-04-17T17:13:02.000Z)
Why not provide special formatting flags for `Template strings`? ```js let
text = `text text text text text text text text text text text text`t; ```
`t` - trim whitespaces Expected result: ```js let text = `text text text
text text text text text text text text text`t; ```


-----------------------------------------
Alexander
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.mozilla.org/pipermail/es-discuss/attachments/20150417/06a229e2/attachment.html>
monolithed at gmail.com (2015-04-17T17:19:09.577Z)
Why not provide special formatting flags for `Template strings`? 

```js 

let text = `text text text text text text 
            text text text text text text`t; 
```

`t` - trim whitespaces 

Expected result: 

```js 
let text = `text text text text text text text text text text text text`t; 
```


-----------------------------------------
Alexander