Irina Glushko 2389e7160b HW1 done | před 3 roky | |
---|---|---|
.. | ||
index.d.ts | před 3 roky | |
index.js | před 3 roky | |
license | před 3 roky | |
package.json | před 3 roky | |
readme.md | před 3 roky |
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