José Quiñones Flores 4564da0130 Added Laravel project and removed sensitive data | hace 4 años | |
---|---|---|
.. | ||
index.js | hace 4 años | |
license | hace 4 años | |
package.json | hace 4 años | |
readme.md | hace 4 años |
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