functional-abstraction/functools Home Manual Reference Source

src/bind.js

  1. export default function bind(callable, that, args) {
  2. const bound_args = [that].concat(args);
  3.  
  4. return Function.prototype.bind.apply(callable, bound_args);
  5. }