Unshift

Easy
array
infer

Description:

Implement the type version of Array.unshift

For example:

type Result = Unshift<[1, 2], 0> // [0, 1, 2]

Code

Loading...