spmjs

spm@3.x

Brand new static package manager for browser.

Getting Started 󰅴 Packages

strip-indent @0.1.3


Strip leading whitespace from every line in a string

spm install strip-indent@0.1.3

Version: 0.1.3 ~ stable

Updated 10 years ago
Homepage https://github.com/sindresorhus/strip-indent
Main index.js
Tarfile strip-indent-0.1.3.tar.gz

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
$ bower install --save strip-indent
$ component install sindresorhus/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