No Description

partial.js 1009B

12345678910111213141516171819202122232425
  1. var restArguments = require('./restArguments.js');
  2. var _executeBound = require('./_executeBound.js');
  3. var underscore = require('./underscore.js');
  4. // Partially apply a function by creating a version that has had some of its
  5. // arguments pre-filled, without changing its dynamic `this` context. `_` acts
  6. // as a placeholder by default, allowing any combination of arguments to be
  7. // pre-filled. Set `_.partial.placeholder` for a custom placeholder argument.
  8. var partial = restArguments(function(func, boundArgs) {
  9. var placeholder = partial.placeholder;
  10. var bound = function() {
  11. var position = 0, length = boundArgs.length;
  12. var args = Array(length);
  13. for (var i = 0; i < length; i++) {
  14. args[i] = boundArgs[i] === placeholder ? arguments[position++] : boundArgs[i];
  15. }
  16. while (position < arguments.length) args.push(arguments[position++]);
  17. return _executeBound(func, bound, this, this, args);
  18. };
  19. return bound;
  20. });
  21. partial.placeholder = underscore;
  22. module.exports = partial;