Linux ubuntu22 5.15.0-133-generic #144-Ubuntu SMP Fri Feb 7 20:47:38 UTC 2025 x86_64
nginx/1.18.0
: 128.199.27.159 | : 216.73.216.1
Cant Read [ /etc/named.conf ]
8.1.31
www-data
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 /
quiz1 /
node_modules /
type-fest /
ts41 /
[ HOME SHELL ]
Name
Size
Permission
Action
camel-case.d.ts
1.77
KB
-rw-rw-rw-
delimiter-case.d.ts
2.78
KB
-rw-rw-rw-
get.d.ts
4.08
KB
-rw-rw-rw-
index.d.ts
419
B
-rw-rw-rw-
kebab-case.d.ts
686
B
-rw-rw-rw-
pascal-case.d.ts
608
B
-rw-rw-rw-
snake-case.d.ts
672
B
-rw-rw-rw-
utilities.d.ts
331
B
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : camel-case.d.ts
import {WordSeparators} from '../source/utilities'; import {Split} from './utilities'; /** Step by step takes the first item in an array literal, formats it and adds it to a string literal, and then recursively appends the remainder. Only to be used by `CamelCaseStringArray<>`. @see CamelCaseStringArray */ type InnerCamelCaseStringArray<Parts extends any[], PreviousPart> = Parts extends [`${infer FirstPart}`, ...infer RemainingParts] ? FirstPart extends undefined ? '' : FirstPart extends '' ? InnerCamelCaseStringArray<RemainingParts, PreviousPart> : `${PreviousPart extends '' ? FirstPart : Capitalize<FirstPart>}${InnerCamelCaseStringArray<RemainingParts, FirstPart>}` : ''; /** Starts fusing the output of `Split<>`, an array literal of strings, into a camel-cased string literal. It's separate from `InnerCamelCaseStringArray<>` to keep a clean API outwards to the rest of the code. @see Split */ type CamelCaseStringArray<Parts extends string[]> = Parts extends [`${infer FirstPart}`, ...infer RemainingParts] ? Uncapitalize<`${FirstPart}${InnerCamelCaseStringArray<RemainingParts, FirstPart>}`> : never; /** Convert a string literal to camel-case. This can be useful when, for example, converting some kebab-cased command-line flags or a snake-cased database result. @example ``` import {CamelCase} from 'type-fest'; // Simple const someVariable: CamelCase<'foo-bar'> = 'fooBar'; // Advanced type CamelCasedProps<T> = { [K in keyof T as CamelCase<K>]: T[K] }; interface RawOptions { 'dry-run': boolean; 'full_family_name': string; foo: number; } const dbResult: CamelCasedProps<ModelProps> = { dryRun: true, fullFamilyName: 'bar.js', foo: 123 }; ``` */ export type CamelCase<K> = K extends string ? CamelCaseStringArray<Split<K, WordSeparators>> : K;
Close