Skip to content
/ nary Public

Wrap a function in a function that only accepts a predefined number of arguments.

License

Notifications You must be signed in to change notification settings

ndhoule/nary

Repository files navigation

nary CI

Wrap a function so that it only accepts a predefined number of arguments.

Installation

$ component install ndhoule/nary
$ npm install @ndhoule/nary

API

nary(n : number, func: Function)

Wrap a function in a wrapper that passes a maximum of n arguments to the wrapped function.

['1', '2', '3'].map(nary(1, parseInt)); // => [1, 2, 3]

License

Released under the MIT license.

About

Wrap a function in a function that only accepts a predefined number of arguments.

Resources

License

Stars

Watchers

Forks

Packages