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 : snake-case.d.ts
import {DelimiterCase} from './delimiter-case'; /** Convert a string literal to snake-case. This can be useful when, for example, converting a camel-cased object property to a snake-cased SQL column name. @example ``` import {SnakeCase} from 'type-fest'; // Simple const someVariable: SnakeCase<'fooBar'> = 'foo_bar'; // Advanced type SnakeCasedProps<T> = { [K in keyof T as SnakeCase<K>]: T[K] }; interface ModelProps { isHappy: boolean; fullFamilyName: string; foo: number; } const dbResult: SnakeCasedProps<ModelProps> = { 'is_happy': true, 'full_family_name': 'Carla Smith', foo: 123 }; ``` */ export type SnakeCase<Value> = DelimiterCase<Value, '_'>;
Close