caoge c760052ff9 机车状态修改 | hace 8 meses | |
---|---|---|
.. | ||
index.js | hace 8 meses | |
license | hace 8 meses | |
package.json | hace 8 meses | |
readme.md | hace 8 meses |
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