![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/dceprojects.corals.io/node_modules/arity-n/ |
arity-n ============ [](https://travis-ci.org/stoeffel/arityN) [](http://badge.fury.io/js/arity-n) > Wraps a function with a function of a sertain arity. Installation ------------ `npm install arity-n` Usage ----- ```js function fn(a, b, c, d) { } var arityN = require('arity-n'); var newFn = arityN(fn, 3); newFn.length; // => 3 var arity4 = require('arity-n/4'); var newFn = arity4(fn); newFn.length; // => 4 // Max arity is 5. var newFn = arityN(fn, 7); newFn.length; // => 4 ```