Skip to main content
File

title: unary tags: function,beginner

TS JS Deno

Creates a function that accepts up to one argument, ignoring any additional arguments.

Call the provided function, fn, with just the first argument given.

const unary = (fn: Function) => (val: any) => fn(val);
["6", "8", "10"].map(unary(parseInt)); // [6, 8, 10]