wallet-core/node_modules/indent-string/readme.md
2017-05-27 17:36:13 +02:00

1.0 KiB

indent-string Build Status

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.

License

MIT © Sindre Sorhus