Skip to content

Instantly share code, notes, and snippets.

@exuanbo
Created February 21, 2022 10:55
Show Gist options
  • Save exuanbo/3bfbdeede342ad57ff3e444e06ec8f36 to your computer and use it in GitHub Desktop.
Save exuanbo/3bfbdeede342ad57ff3e444e06ec8f36 to your computer and use it in GitHub Desktop.
export const unary =
<T, R>(fn: (arg1: T, ...args: unknown[]) => R) =>
(arg1: T): R =>
fn(arg1)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment