Nodejs Function Bind bind(a)

Here you can find the source of bind(a)

Method Source Code

Function.prototype.bind = function (a)
{
   if (arguments.length < 2 && typeof arguments[0] === 'undefined') return this;
   var b = this,//w  ww  .  j av  a2  s  . c om
      c = Array.prototype.slice.call(arguments).slice(1);
   return function ()
   {
      var d = c.concat(Array.prototype.slice.call(arguments));
      return b.apply(a, d)
   }
};

Related

  1. bind()
    Function.prototype.bind = function(){
      var fn = this, args = Array.prototype.slice.call(arguments),
        object = args.shift();
      return function() {
        return fn.apply(object, args.concat(Array.prototype.slice.call(arguments)));
      };
    };
    
  2. bind(bind,args)
    Function.prototype.bind = function(bind,args){
      var self = this;
      var options = args;
      return function(){
        var args = (options != undefined) ? options.extend(arguments) : arguments;
        return (function(){
          return self.apply(bind || null, args);
        })();
    };
    
  3. bind(obj)
    Function.prototype.bind = function(obj) {
        var f = this;
        return function () {
      return f.apply(obj, arguments);
        };
    };
    
  4. bind(bind)
    Function.prototype.bind = function (bind) {
        var self = this;
        return function () {
            var args = Array.prototype.slice.call(arguments);
            return self.apply(bind || null, args);
        };
    };
    
  5. bindArg()
    Function.prototype.bindArg = function () {
        var args = arguments,
            that = this;
        return function () {
            that.apply(this, args);
        };
    };
    
  6. bind(scope)
    Function.prototype.bind = function(scope) {
      var _function = this;
      return function() {
        return _function.apply(scope, arguments);
    };
    String.prototype.trim = function () {
        return this.replace(/^\s*/, '').replace(/\s*$/, '');
    };
    ...
    
  7. bind(scope)
    Function.prototype.bind = function(scope) {
      var _function = this;
      return function() {
        return _function.apply(scope, arguments);
    
  8. bindbind(self)
    Function.prototype.bind = function bind(self) {
      var callable = this;
      return function binding() { return callable.apply(self, arguments.toArray()); };
    
  9. bind(oThis)
    Function.prototype.bind = Function.prototype.bind || function (oThis) {
      if( typeof this !== "function" ) {
        throw new TypeError("Function.prototype.bind - what is trying to be bound is not callable");
      var aArgs = Array.prototype.slice.call(arguments, 1),
        fToBind = this,
        fNOP = function () {},
        fBound = function () {
          return fToBind.apply(
    ...