Mohammad Asif cf937194cb Removed un-waned things 1. | 5 kuukautta sitten | |
---|---|---|
.. | ||
index.js | 5 kuukautta sitten | |
license | 5 kuukautta sitten | |
package.json | 5 kuukautta sitten | |
readme.md | 5 kuukautta sitten |
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.
$ npm install --save min-indent
const minIndent = require('min-indent');
const str = '\tunicorn\n\t\tcake';
/*
unicorn
cake
*/
minIndent(str); // 1
MIT © James Kyle