This repository has been archived on 2021-05-23. You can view files and clone it, but cannot push or open issues or pull requests.
simpledash/bulma/node_modules/strip-indent
Elara bb2c9351d6 Remove unnecessary resources, add bulma, and add AdvMakefile 2021-03-29 15:02:41 -07:00
..
cli.js Remove unnecessary resources, add bulma, and add AdvMakefile 2021-03-29 15:02:41 -07:00
index.js Remove unnecessary resources, add bulma, and add AdvMakefile 2021-03-29 15:02:41 -07:00
license Remove unnecessary resources, add bulma, and add AdvMakefile 2021-03-29 15:02:41 -07:00
package.json Remove unnecessary resources, add bulma, and add AdvMakefile 2021-03-29 15:02:41 -07:00
readme.md Remove unnecessary resources, add bulma, and add AdvMakefile 2021-03-29 15:02:41 -07:00

readme.md

strip-indent Build Status

Strip leading whitespace from every line in a string

The line with the least number of leading whitespace, ignoring empty lines, determines the number to remove.

Useful for removing redundant indentation.

Install

$ npm install --save strip-indent

Usage

var str = '\tunicorn\n\t\tcake';
/*
	unicorn
		cake
*/

stripIndent('\tunicorn\n\t\tcake');
/*
unicorn
	cake
*/

CLI

$ npm install --global strip-indent
$ strip-indent --help

  Usage
    strip-indent <file>
    echo <string> | strip-indent

  Example
    echo '\tunicorn\n\t\tcake' | strip-indent
    unicorn
    	cake

License

MIT © Sindre Sorhus