initial commit of actions
This commit is contained in:
commit
949ece5785
44660 changed files with 12034344 additions and 0 deletions
17
github/codeql-action-v1/node_modules/is-path-cwd/index.d.ts
generated
vendored
Normal file
17
github/codeql-action-v1/node_modules/is-path-cwd/index.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
/**
|
||||
Check if a path is the [current working directory](https://en.wikipedia.org/wiki/Working_directory).
|
||||
|
||||
@example
|
||||
```
|
||||
import isPathCwd = require('is-path-cwd');
|
||||
|
||||
isPathCwd(process.cwd());
|
||||
//=> true
|
||||
|
||||
isPathCwd('unicorn');
|
||||
//=> false
|
||||
```
|
||||
*/
|
||||
declare function isPathCwd(path: string): boolean;
|
||||
|
||||
export = isPathCwd;
|
||||
Loading…
Add table
Add a link
Reference in a new issue