-
-
Notifications
You must be signed in to change notification settings - Fork 683
Expand file tree
/
Copy pathcamel-case.d.ts
More file actions
125 lines (101 loc) · 3.32 KB
/
camel-case.d.ts
File metadata and controls
125 lines (101 loc) · 3.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
import type {ApplyDefaultOptions} from './internal/index.d.ts';
import type {_DefaultWordsOptions, Words, WordsOptions} from './words.d.ts';
/**
CamelCase options.
@see {@link CamelCase}
*/
export type CamelCaseOptions = WordsOptions & {
/**
Whether to preserved consecutive uppercase letter.
@default false
*/
preserveConsecutiveUppercase?: boolean;
/**
Whether to preserve leading underscores.
This matches the behavior of the [`camelcase`](https://github.com/sindresorhus/camelcase) package v9+.
@default false
*/
preserveLeadingUnderscores?: boolean;
};
export type _DefaultCamelCaseOptions = _DefaultWordsOptions & {
preserveConsecutiveUppercase: false;
preserveLeadingUnderscores: false;
};
/**
Extract leading underscores from a string.
@example
```
type A = LeadingUnderscores<'__foo_bar'>;
//=> '__'
type B = LeadingUnderscores<'foo_bar'>;
//=> ''
```
*/
type LeadingUnderscores<Type extends string, Underscores extends string = ''> =
Type extends `_${infer Rest}`
? LeadingUnderscores<Rest, `_${Underscores}`>
: Underscores;
/**
Convert an array of words to camel-case.
*/
type CamelCaseFromArray<
Words extends string[],
Options extends Required<CamelCaseOptions>,
OutputString extends string = '',
> = Words extends [
infer FirstWord extends string,
...infer RemainingWords extends string[],
]
? Options['preserveConsecutiveUppercase'] extends true
? `${Capitalize<FirstWord>}${CamelCaseFromArray<RemainingWords, Options>}`
: `${Capitalize<Lowercase<FirstWord>>}${CamelCaseFromArray<RemainingWords, Options>}`
: OutputString;
/**
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.
By default, consecutive uppercase letter are preserved. See {@link CamelCaseOptions.preserveConsecutiveUppercase preserveConsecutiveUppercase} option to change this behaviour.
Use the `preserveLeadingUnderscores` option to retain leading underscores, matching the runtime behavior of [`camelcase`](https://github.com/sindresorhus/camelcase) v9+.
@example
```
import type {CamelCase} from 'type-fest';
// Simple
const someVariable: CamelCase<'foo-bar'> = 'fooBar';
const preserveConsecutiveUppercase: CamelCase<'foo-BAR-baz', {preserveConsecutiveUppercase: true}> = 'fooBARBaz';
const splitOnPunctuation: CamelCase<'foo-bar:BAZ', {splitOnPunctuation: true}> = 'fooBarBaz';
const preserveLeadingUnderscores: CamelCase<'_foo_bar', {preserveLeadingUnderscores: true}> = '_fooBar';
// Advanced
type CamelCasedProperties<T> = {
[K in keyof T as CamelCase<K>]: T[K]
};
type RawOptions = {
'dry-run': boolean;
'full_family_name': string;
foo: number;
BAR: string;
QUZ_QUX: number;
'OTHER-FIELD': boolean;
};
const dbResult: CamelCasedProperties<RawOptions> = {
dryRun: true,
fullFamilyName: 'bar.js',
foo: 123,
bar: 'foo',
quzQux: 6,
otherField: false,
};
```
@category Change case
@category Template literal
*/
export type CamelCase<Type, Options extends CamelCaseOptions = {}> = Type extends string
? string extends Type
? Type
: `${Options['preserveLeadingUnderscores'] extends true
? LeadingUnderscores<Type>
: ''
}${Uncapitalize<CamelCaseFromArray<
Words<Type extends Uppercase<Type> ? Lowercase<Type> : Type, Options>,
ApplyDefaultOptions<CamelCaseOptions, _DefaultCamelCaseOptions, Options>
>>}`
: Type;
export {};