rambda
Version:
Lightweight faster alternative to Ramda
15 lines (13 loc) • 335 B
text/typescript
import {Tuple} from './Tuple'
/** Add an element **`A`** at the beginning of **`T`**
* @param T to append to
* @param A to be added to
* @returns **`any[]`**
* @example
* ```ts
* ```
*/
export type Prepend<T extends Tuple, A extends any> =
((head: A, ...args: T) => any) extends ((...args: infer U) => any)
? U
: T