Codebase list node-strip-indent / 7965b864-17f9-44ab-ad36-e29fdd339200/main index.d.ts
7965b864-17f9-44ab-ad36-e29fdd339200/main

Tree @7965b864-17f9-44ab-ad36-e29fdd339200/main (Download .tar.gz)

index.d.ts @7965b864-17f9-44ab-ad36-e29fdd339200/mainraw · history · blame

/**
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.

@example
```
import stripIndent = require('strip-indent');

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

stripIndent(string);
//unicorn
//	cake
```
*/
declare function stripIndent(string: string): string;

export = stripIndent;