min-indent
DefinitelyTyped icon, indicating that this package has TypeScript declarations provided by the separate @types/min-indent package

1.0.1 • Public • Published

min-indent Build Status

Get the shortest leading whitespace from lines in a string

The line with the least number of leading whitespace, ignoring empty lines, determines the number.

Useful for removing redundant indentation.

Install

$ npm install --save min-indent

Usage

const minIndent = require('min-indent');
 
const str = '\tunicorn\n\t\tcake';
/*
    unicorn
        cake
*/
 
minIndent(str); // 1

Related

License

MIT © James Kyle

Package Sidebar

Install

npm i min-indent

Weekly Downloads

16,731,300

Version

1.0.1

License

MIT

Unpacked Size

2.97 kB

Total Files

4

Last publish

Collaborators

  • sindresorhus
  • thejameskyle