65d650c22346ad39917fc7e054b1e7a38024c20c5652293cfcd17041557e1c27087524ee9bbe3f5c2b72ec2c12b394ac2e79bb998b26fd4bad503e1109c87e 312 B

1234567891011121314151617
  1. /**
  2. Check if a path is the [current working directory](https://en.wikipedia.org/wiki/Working_directory).
  3. @example
  4. ```
  5. import isPathCwd = require('is-path-cwd');
  6. isPathCwd(process.cwd());
  7. //=> true
  8. isPathCwd('unicorn');
  9. //=> false
  10. ```
  11. */
  12. declare function isPathCwd(path: string): boolean;
  13. export = isPathCwd;