UNPKG

@micro-os-plus/hello-world-qemu-template

Version:

A source xPack / npm package with a template to generate semihosted Hello World projects running on QEMU

16 lines (12 loc) 292 B
/** Check if a path is the [current working directory](https://en.wikipedia.org/wiki/Working_directory). @example ``` import isPathCwd from 'is-path-cwd'; isPathCwd(process.cwd()); //=> true isPathCwd('unicorn'); //=> false ``` */ export default function isPathCwd(path: string): boolean;