JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 37407679
  • Score
    100M100P100Q241176F
  • License MIT

Strip leading whitespace from each line in a string

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 Build Status

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.

Useful for removing redundant indentation.

Install

$ npm install strip-indent

Usage

const stripIndent = require('strip-indent');

const string = '\tunicorn\n\t\tcake';
/*
    unicorn
        cake
*/

stripIndent(string);
/*
unicorn
    cake
*/

License

MIT © Sindre Sorhus