tree: 1547b9507036e68168d8640f1a967c6f20cb8456 [path history] [tgz]
  1. cli.js
  2. index.js
  3. license
  4. package.json
  5. readme.md
src/cobalt/debug/remote/devtools/node_modules/strip-indent/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

Related

License

MIT © Sindre Sorhus