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 /
npm /
node_modules /
just-diff /
Delete
Unzip
Name
Size
Permission
Date
Action
index.d.ts
668
B
-rw-r--r--
2023-11-23 07:39
index.js
3.85
KB
-rw-r--r--
2023-11-23 07:39
index.mjs
3.81
KB
-rw-r--r--
2023-11-23 07:39
index.tests.ts
1.26
KB
-rw-r--r--
2023-11-23 07:39
package.json
767
B
-rw-r--r--
2023-11-23 07:39
Save
Rename
// Definitions by: Cameron Hunter <https://github.com/cameronhunter> // Modified by: Angus Croll <https://github.com/angus-c> type Operation = "add" | "replace" | "remove"; type JSONPatchPathConverter<OUTPUT> = ( arrayPath: Array<string | number> ) => OUTPUT; export function diff( a: object | Array<any>, b: object | Array<any>, ): Array<{ op: Operation; path: Array<string | number>; value: any }>; export function diff<PATH>( a: object | Array<any>, b: object | Array<any>, jsonPatchPathConverter: JSONPatchPathConverter<PATH> ): Array<{ op: Operation; path: PATH; value: any }>; export const jsonPatchPathConverter: JSONPatchPathConverter<string>;