Indent each line in a string
npm install indent-string> Indent each line in a string
```
$ npm install indent-string
`js
import indentString from 'indent-string';
indentString('Unicorns\nRainbows', 4);
//=> ' Unicorns\n Rainbows'
indentString('Unicorns\nRainbows', 4, {indent: '♥'});
//=> '♥♥♥♥Unicorns\n♥♥♥♥Rainbows'
`
#### string
Type: string
The string to indent.
#### count
Type: number\1
Default:
How many times you want options.indent repeated.
#### options
Type: object
##### indent
Type: string\' '
Default:
The string to use for the indent.
##### includeEmptyLines
Type: boolean\false`
Default:
Also indent empty lines.
- indent-string-cli - CLI for this module
- strip-indent - Strip leading whitespace from every line in a string
---