Template strings formatter for avoiding indentation side effect
npm install bzz


```
npm install --save bzz
defaultGitter set a minimum identation for passed string. Default: 0
`js
const bzz = require('bzz');
// the fist string's line will be removed
const str = bzz(
Hello
world); // <-- the last line will be removed too
console.log(str);
``
Output:`
Hello
world
---
`js
const bzz = require('bzz');
const str = bzz( this line will be removed so not affect anything
Meow
Moo
Arf-arf, 2);
console.log(str);
``
Output:``
Meow
Moo
Arf-arf
#### Author
Dmitry Pavlovsky