-
-
Notifications
You must be signed in to change notification settings - Fork 677
Expand file tree
/
Copy pathis-uppercase.d.ts
More file actions
38 lines (30 loc) · 1 KB
/
is-uppercase.d.ts
File metadata and controls
38 lines (30 loc) · 1 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
import type {AllExtend} from './all-extend.d.ts';
/**
Returns a boolean for whether the given string literal is uppercase.
@example
```
import type {IsUppercase} from 'type-fest';
type A = IsUppercase<'ABC'>;
//=> true
type B = IsUppercase<'Abc'>;
//=> false
type C = IsUppercase<string>;
//=> boolean
```
*/
export type IsUppercase<S extends string> = AllExtend<_IsUppercase<S>, true>;
/**
Loops through each part in the string and returns a boolean array indicating whether each part is uppercase.
*/
type _IsUppercase<S extends string, Accumulator extends boolean[] = []> = S extends `${infer First}${infer Rest}`
? _IsUppercase<Rest, [...Accumulator, IsUppercaseHelper<First>]>
: [...Accumulator, IsUppercaseHelper<S>];
/**
Returns a boolean for whether an individual part of the string is uppercase.
*/
type IsUppercaseHelper<S extends string> = S extends Uppercase<string>
? true
: S extends Lowercase<string> | Uncapitalize<string> | `${string}${Lowercase<string>}${string}`
? false
: boolean;
export {};