fnUtils - Collection of utils for Function manipulation
Overview
Collection of function processing utilities:
slice(arguments, index)
(arguments Object, number): returns an array of thearguments
items starting atindex
head(function)
(Array): returns an array of the function named argumentsbody(function)
(string): returns the function source code
Download
fnUtils is published on node package manager (npm). To install, do:
npm install fnutils
Usage
var fnutils ={var args = fnutilsconsole}consoleconsole
Output
test arguments (type=object, length=3) [ 'a', 0, true ]
test arguments (type=object, length=2) [ 1, true ]
HEAD [ 'a', 'b', 'c' ]
BODY
var args = fnutils.slice(arguments, b)
console.log('test arguments (type=%s, length=%d)', typeof args, args.length, args)