| 1234567891011121314151617181920 | /**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');//=> trueisPathInCwd('../rainbow');//=> falseisPathInCwd('.');//=> false```*/declare function isPathInCwd(path: string): boolean;export = isPathInCwd;
 |