routie dev init since i didn't adhere to any proper guidance up until now

This commit is contained in:
2026-04-29 22:27:29 -06:00
commit e1dabb71e2
15301 changed files with 3562618 additions and 0 deletions
+41
View File
@@ -0,0 +1,41 @@
/**
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 from 'strip-indent';
const string = '\tunicorn\n\t\tcake';
// unicorn
// cake
stripIndent(string);
//unicorn
// cake
```
*/
export default function stripIndent(string: string): string;
/**
Strip leading whitespace from each line in a string and remove surrounding blank lines.
The line with the least number of leading whitespace, ignoring empty lines, determines the number to remove.
Leading and trailing lines that contain only whitespace are removed.
Useful for template literals and multi-line strings where you want clean boundaries.
@example
```
import {dedent} from 'strip-indent';
dedent(`
unicorn
cake
`);
//unicorn
// cake
```
*/
export function dedent(string: string): string;