strip-indent
- Version 4.0.0
- Published
- 3.64 kB
- 1 dependency
- MIT license
Install
npm i strip-indent
yarn add strip-indent
pnpm add strip-indent
Overview
Strip leading whitespace from each line in a string
Index
Functions
Functions
function stripIndent
stripIndent: (string: string) => string;
Strip leading whitespace from each line in a string.
The line with the least number of leading whitespace, ignoring empty lines, determines the number to remove.
Example 1
import stripIndent from 'strip-indent';const string = '\tunicorn\n\t\tcake';// unicorn// cakestripIndent(string);//unicorn// cake
Package Files (1)
Dependencies (1)
Dev Dependencies (3)
Peer Dependencies (0)
No peer dependencies.
Badge
To add a badge like this oneto your package's README, use the codes available below.
You may also use Shields.io to create a custom badge linking to https://www.jsdocs.io/package/strip-indent
.
- Markdown[](https://www.jsdocs.io/package/strip-indent)
- HTML<a href="https://www.jsdocs.io/package/strip-indent"><img src="https://img.shields.io/badge/jsDocs.io-reference-blue" alt="jsDocs.io"></a>
- Updated .
Package analyzed in 2402 ms. - Missing or incorrect documentation? Open an issue for this package.