Popularity
2.1
Stable
Activity
1.8
Declining
110
7
17

Monthly Downloads: 0
Programming language: JavaScript
License: MIT License
Tags: Text     String     Str     Line     Align     Pad     Indent     Each     Every    
Latest version: v4.0.0

indent-string alternatives and similar modules

Based on the "Text" category.
Alternatively, view indent-string alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of indent-string or a related project?

Add another 'Text' Module

README

indent-string

Indent each line in a string

Install

$ npm install indent-string

Usage

import indentString from 'indent-string';

indentString('Unicorns\nRainbows', 4);
//=> '    Unicorns\n    Rainbows'

indentString('Unicorns\nRainbows', 4, {indent: '♥'});
//=> '♥♥♥♥Unicorns\n♥♥♥♥Rainbows'

API

indentString(string, count?, options?)

string

Type: string

The string to indent.

count

Type: number\ Default: 1

How many times you want options.indent repeated.

options

Type: object

indent

Type: string\ Default: ' '

The string to use for the indent.

includeEmptyLines

Type: boolean\ Default: false

Also indent empty lines.

Related


Get professional support for this package with a Tidelift subscription Tidelift helps make open source sustainable for maintainers while giving companiesassurances about security, maintenance, and licensing for their dependencies.