|
||||
---|---|---|---|---|
.. | ||||
index.js | 11e3a9652a | 7 年 前 | ||
license | 11e3a9652a | 7 年 前 | ||
package.json | 11e3a9652a | 7 年 前 | ||
readme.md | 11e3a9652a | 7 年 前 |
Indent each line in a string
$ npm install --save indent-string
var indentString = require('indent-string');
indentString('Unicorns\nRainbows', '♥', 4);
//=> ♥♥♥♥Unicorns
//=> ♥♥♥♥Rainbows
Required
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.
MIT © Sindre Sorhus