unary

v0.9.6arrow_drop_down
v0.9.6
STATUS
Passing
DOWNLOADS
2
VISIBILITY
Public
PUBLISHED
5 years ago
SIZE
1020 B
Wraps a function of any arity (including nullary) in a function that accepts exactly 1 parameter.
1 contributor
Install unary as a package?
Copied
npm i @bit/justin-capalbo.ramda.unary
Set Bit as a scoped registryLearn more
npm config set '@bit:registry' https://node.bit.cloud
Component Example
React
React
Vue
Angular
React Native
Add dependency... help_outline
Just
import
any of the 1 million components
and packages in Bit or NPM to the example.
import Button from '@bit/grommet.grommet.button';
import Lodash from 'lodash';
toggle layout
No preview available
modifieddraft
chevron_left
chevron_right
unary (
fn:Function
) : Function

Wraps a function of any arity (including nullary) in a function that accepts exactly 1 parameter. Any extraneous parameters will not be passed to the supplied function.

Example
const takesTwoArgs = function(a, b) {
       return [a, b];
     };
     takesTwoArgs.length; //=> 2
     takesTwoArgs(1, 2); //=> [1, 2]

     const takesOneArg = R.unary(takesTwoArgs);
     takesOneArg.length; //=> 1
     // Only 1 argument is passed to the wrapped function
     takesOneArg(1, 2); //=> [1, undefined]
Argument
fn: Function

The function to wrap.

Returns
Function

A new function wrapping `fn`. The new function is guaranteed to be of arity 1.

Help and resources