Highlights
- Arctic Code Vault Contributor
Create your own GitHub profile
Sign up for your own profile on GitHub, the best place to host code, manage projects, and build software alongside 50 million developers.
Sign up
Popular repositories
69 contributions in the last year
Activity overview
Contribution activity
October 2020
September 2020
Created an issue in type-challenges/type-challenges that received 1 comment
17 - Currying 1
type Curry<P, R> = P extends [infer K, ...infer O] ? (a: K) => Curry<O, R> : R; declare function Currying<P extends any[], R>(fn: (...args: P) => R):