Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F101068593
index.d.ts
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Wed, Feb 5, 10:17
Size
410 B
Mime Type
text/x-java
Expires
Fri, Feb 7, 10:17 (1 d, 21 h)
Engine
blob
Format
Raw Data
Handle
24087991
Attached To
rOACCT Open Access Compliance Check Tool (OACCT)
index.d.ts
View Options
/**
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;
Event Timeline
Log In to Comment