()
| 1027 | var partial = restArguments(function(func, boundArgs) { |
| 1028 | var placeholder = partial.placeholder; |
| 1029 | var bound = function() { |
| 1030 | var position = 0, length = boundArgs.length; |
| 1031 | var args = Array(length); |
| 1032 | for (var i = 0; i < length; i++) { |
| 1033 | args[i] = boundArgs[i] === placeholder ? arguments[position++] : boundArgs[i]; |
| 1034 | } |
| 1035 | while (position < arguments.length) args.push(arguments[position++]); |
| 1036 | return executeBound(func, bound, this, this, args); |
| 1037 | }; |
| 1038 | return bound; |
| 1039 | }); |
| 1040 |
no test coverage detected
searching dependent graphs…