⚗️ transform 🔢 customizable
Drops the last entry in the tuple T.
T
If the type is an array, the same array will be returned.
type R = DropLast<[1, 2, 3]> // [2, 3]type R = DropLast<[string]> // []type R = DropLast<[]> // []type R = DropLast<string[]> // string[] Copy
type R = DropLast<[1, 2, 3]> // [2, 3]type R = DropLast<[string]> // []type R = DropLast<[]> // []type R = DropLast<string[]> // string[]
Return type when T is Array. Default to T.
Array
Return type when T is an empty tuple. Default to [].
[]
⚗️ transform 🔢 customizable
Drops the last entry in the tuple
T
.If the type is an array, the same array will be returned.