peach a19a732be8 commit message | 2 gadi atpakaļ | |
---|---|---|
.. | ||
index.d.ts | 2 gadi atpakaļ | |
index.js | 2 gadi atpakaļ | |
license | 2 gadi atpakaļ | |
package.json | 2 gadi atpakaļ | |
readme.md | 2 gadi atpakaļ |
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.
$ npm install strip-indent
const stripIndent = require('strip-indent');
const string = '\tunicorn\n\t\tcake';
/*
unicorn
cake
*/
stripIndent(string);
/*
unicorn
cake
*/
MIT © Sindre Sorhus