PATH:
opt
/
bitninja-threat-hunting
/
node_modules
/
path-exists
declare const pathExists: { /** Check if a path exists. @returns Whether the path exists. @example ``` // foo.ts import pathExists = require('path-exists'); (async () => { console.log(await pathExists('foo.ts')); //=> true })(); ``` */ (path: string): Promise<boolean>; /** Synchronously check if a path exists. @returns Whether the path exists. */ sync(path: string): boolean; }; export = pathExists;
[+]
..
[-] index.d.ts
[edit]
[-] readme.md
[edit]
[-] package.json
[edit]
[-] index.js
[edit]
[-] license
[edit]