Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F100947177
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
Tue, Feb 4, 05:16
Size
357 B
Mime Type
text/x-java
Expires
Thu, Feb 6, 05:16 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
24057989
Attached To
rOACCT Open Access Compliance Check Tool (OACCT)
index.d.ts
View Options
/**
Check if a path is in the [current working directory](https://en.wikipedia.org/wiki/Working_directory).
@example
```
import isPathInCwd = require('is-path-in-cwd');
isPathInCwd('unicorn');
//=> true
isPathInCwd('../rainbow');
//=> false
isPathInCwd('.');
//=> false
```
*/
declare function isPathInCwd(path: string): boolean;
export = isPathInCwd;
Event Timeline
Log In to Comment