Indent each line in a string
$ npm install --save indent-string
var indentString = require('indent-string');
indentString('Unicorns\nRainbows', '♥', 4);
//=> ♥♥♥♥Unicorns
//=> ♥♥♥♥RainbowsRequired
Type: string
The string you want to indent.
Required
Type: string
The string to use for the indent.
Type: number
Default: 1
How many times you want indent repeated.
- indent-string-cli - CLI for this module
- strip-indent - Strip leading whitespace from every line in a string
MIT © Sindre Sorhus