Linux srv25.usacloudserver.us 5.14.0-570.39.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Sep 4 05:08:52 EDT 2025 x86_64
LiteSpeed
Server IP : 23.137.84.82 & Your IP : 216.73.216.127
Domains :
Cant Read [ /etc/named.conf ]
User : epicgamerzoneco
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
lib /
node_modules /
npm /
node_modules /
just-diff /
Delete
Unzip
Name
Size
Permission
Date
Action
LICENSE
1.05
KB
-rw-r--r--
2023-08-08 22:32
index.d.ts
668
B
-rw-r--r--
2023-08-08 22:32
index.js
3.85
KB
-rw-r--r--
2023-08-08 22:32
index.mjs
3.81
KB
-rw-r--r--
2023-08-08 22:32
index.tests.ts
1.26
KB
-rw-r--r--
2023-08-08 22:32
package.json
767
B
-rw-r--r--
2023-08-08 22:32
rollup.config.js
120
B
-rw-r--r--
2023-08-08 22:32
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>;