2.0.0 • Published 3 years ago

strip-indent-cli v2.0.0

Weekly downloads
4
License
MIT
Repository
github
Last release
3 years ago

strip-indent-cli

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.

Install

$ npm install --global strip-indent-cli

Usage

$ strip-indent --help

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

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

Related