1.0 KiB
1.0 KiB
indent-string
Indent each line in a string
Install
$ npm install --save indent-string
Usage
const indentString = require('indent-string');
indentString('Unicorns\nRainbows', 4);
//=> ' Unicorns'
//=> ' Rainbows'
indentString('Unicorns\nRainbows', 4, '♥');
//=> '♥♥♥♥Unicorns'
//=> '♥♥♥♥Rainbows'
API
indentString(input, [count], [indent])
input
Type: string
String you want to indent.
count
Type: number
Default: 1
How many times you want indent
repeated.
indent
Type: string
Default: ' '
String to use for the indent.
Related
- indent-string-cli - CLI for this module
- strip-indent - Strip leading whitespace from every line in a string
License
MIT © Sindre Sorhus