No puede seleccionar más de 25 temas
Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
|
- /**
- 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;
|