Sha256: 808f34beed9f00ab3acc06abe97a60f060e38ec10b06d9dcd6cacbf045714b9d
Contents?: true
Size: 410 Bytes
Versions: 50
Compression:
Stored size: 410 Bytes
Contents
/** 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;
Version data entries
50 entries across 50 versions & 2 rubygems