-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path00014-easy-first.ts
49 lines (37 loc) · 1.14 KB
/
00014-easy-first.ts
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
/*
14 - First of Array
-------
by Anthony Fu (@antfu) #easy #array
### Question
Implement a generic `First<T>` that takes an Array `T` and returns it's first element's type.
For example
```ts
type arr1 = ['a', 'b', 'c']
type arr2 = [3, 2, 1]
type head1 = First<arr1> // expected to be 'a'
type head2 = First<arr2> // expected to be 3
```
> View on GitHub: https://tsch.js.org/14
*/
/* _____________ Your Code Here _____________ */
type First<T extends any[]> = T extends [infer U, ...infer Rest] ? U : never
/* _____________ Test Cases _____________ */
import type { Equal, Expect } from '@type-challenges/utils'
type cases = [
Expect<Equal<First<[3, 2, 1]>, 3>>,
Expect<Equal<First<[() => 123, { a: string }]>, () => 123>>,
Expect<Equal<First<[]>, never>>,
Expect<Equal<First<[undefined]>, undefined>>
]
type errors = [
// @ts-expect-error
First<'notArray'>,
// @ts-expect-error
First<{ 0: 'arrayLike' }>
]
/* _____________ Further Steps _____________ */
/*
> Share your solutions: https://tsch.js.org/14/answer
> View solutions: https://tsch.js.org/14/solutions
> More Challenges: https://tsch.js.org
*/