General-purpose re-usable functional utilities.
Strongly recommended to be used along with lodash
First install the putty as a dependency:
npm install --save puttyReturns an array containing the specified arguments
- Type: Any
- Optional
The arguments that need to be returned in the array
function sum() {
var nums = putty.arrgs(arguments);
return nums.reduce(function (result, num) {
return result + num;
}, 0);
}


