monolithed (2015-04-17T17:13:02.000Z)
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