Socket
Socket
Sign inDemoInstall

indent-string

Package Overview
Dependencies
4
Maintainers
1
Versions
16
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    indent-string

Indent each line in a string


Version published
Weekly downloads
36M
decreased by-9.06%
Maintainers
1
Install size
48.2 kB
Created
Weekly downloads
 

Package description

What is indent-string?

The indent-string npm package is a utility that allows users to add indentation to the beginning of each line in a string. This can be particularly useful for formatting multi-line strings or code snippets in a more readable manner. The package provides a simple interface to specify the number of spaces or the string to use for indentation, making it a versatile tool for text manipulation in Node.js applications.

What are indent-string's main functionalities?

Indenting with spaces

This feature allows you to indent each line of a given string with a specified number of spaces. In the code sample, the string 'Unicorn\nRainbow' is indented by 4 spaces.

const indentString = require('indent-string');

console.log(indentString('Unicorn\nRainbow', 4));
// Output:
//     Unicorn
//     Rainbow

Indenting with custom string

This feature enables indenting each line of a string with a custom string instead of spaces. In the example, the string 'Unicorn\nRainbow' is indented using the '♥' character, repeated 4 times as specified.

const indentString = require('indent-string');

console.log(indentString('Unicorn\nRainbow', 4, {indent: '♥'}));
// Output:
// ♥♥♥♥Unicorn
// ♥♥♥♥Rainbow

Other packages similar to indent-string

Readme

Source

indent-string Build Status

Indent each line in a string

Install

$ npm install --save indent-string

Usage

var indentString = require('indent-string');

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

API

indentString(string, indent, count)

string

Required
Type: string

The string you want to indent.

indent

Required
Type: string

The string to use for the indent.

count

Type: number
Default: 1

How many times you want indent repeated.

CLI

$ npm install --global indent-string
$ indent-string --help

  Usage
    indent-string <string> [--indent <string>] [--count <number>]
    cat file.txt | indent-string > indented-file.txt

  Example
    indent-string "$(printf 'Unicorns\nRainbows\n')" --indent ♥ --count 4
    ♥♥♥♥Unicorns
    ♥♥♥♥Rainbows
  • strip-indent - Strip leading whitespace from every line in a string

License

MIT © Sindre Sorhus

Keywords

FAQs

Last updated on 22 Oct 2014

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc