MCPcopy Index your code
hub / github.com/jprichardson/string.js / multiArgs

Function multiArgs

lib/string.js:800–807  ·  view source on GitHub ↗
(args, fn)

Source from the content-addressed store, hash-verified

798
799 //from sugar.js
800 function multiArgs(args, fn) {
801 var result = [], i;
802 for(i = 0; i < args.length; i++) {
803 result.push(args[i]);
804 if(fn) fn.call(args, args[i], i);
805 }
806 return result;
807 }
808
809 //from underscore.string
810 var escapeChars = {

Callers 1

string.jsFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected