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.
-
i18n-node
Lightweight simple translation module for node.js / express.js with dynamic json storage. Uses common __('...') syntax in app and templates. -
string-length
Get the real length of a string - by correctly counting astral symbols and ignoring ansi escape codes
Civic Auth - Auth in Less Than 5 Minutes

* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of indent-string or a related project?
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
- indent-string-cli - CLI for this module
- strip-indent - Strip leading whitespace from every line in a string
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.