binary

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 2 parameters.
1 contributor
Install binary as a package?
Copied
npm i @bit/justin-capalbo.ramda.binary
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
binary (
fn:Function
) : Function

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

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

     const takesTwoArgs = R.binary(takesThreeArgs);
     takesTwoArgs.length; //=> 2
     // Only 2 arguments are passed to the wrapped function
     takesTwoArgs(1, 2, 3); //=> [1, 2, undefined]
Argument
fn: Function

The function to wrap.

Returns
Function

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

Help and resources