Indent each line in a string
$ npm install indent-string
```js const indentString = require('indent-string');
indentString('Unicorns\nRainbows', 4); //=> ' Unicorns\n Rainbows'
indentString('Unicorns\nRainbows', 4, {indent: '♥'}); //=> '♥♥♥♥Unicorns\n♥♥♥♥Rainbows' ```
Type: string
The string to indent.
Type: number
Default: 1
How many times you want options.indent
repeated.
Type: object
Type: string
Default: ' '
The string to use for the indent.
Type: boolean
Default: false
Also indent empty lines.
MIT © Sindre Sorhus