Package Exports
- strip-indent
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (strip-indent) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
strip-indent 
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
Download manually or with a package-manager.
$ npm install --save strip-indent
$ bower install --save strip-indent
$ component install sindresorhus/strip-indent
Usage
var stripIndent = require('strip-indent');
var str = '\tunicorn\n\t\tcake';
/*
unicorn
cake
*/
stripIndent('\tunicorn\n\t\tcake');
/*
unicorn
cake
*/
Can be used with require, global and AMD in the browser.
CLI
You can also use it as a CLI app by installing it globally:
$ npm install --global strip-indent
Usage
$ strip-indent --help
Usage
$ strip-indent <file>
$ echo <string> | strip-indent
Example
$ echo '\tunicorn\n\t\tcake' | strip-indent
unicorn
cake